diff --git a/hub/CONTRIBUTING_EXTERNALS.md b/hub/CONTRIBUTING_EXTERNALS.md
index 47694bf4..48fb5112 100644
--- a/hub/CONTRIBUTING_EXTERNALS.md
+++ b/hub/CONTRIBUTING_EXTERNALS.md
@@ -90,7 +90,7 @@ pylint --rcfile=pylintrc myfile.py
Before any pull request, the code must been manually and automatically tested to ensure at least some quality minimum. There are a few practices for unit tests that we believe are important, so we encourage you to follow it.
-* The test should be self-contained, which implies that your tests will prepare and clean up everything before and after the test execution.
+* The test should be cls-contained, which implies that your tests will prepare and clean up everything before and after the test execution.
* We encourage you to create if possible functional tests that cover the complete workflow of the implemented functionality.
* Maximize your code coverage by ensuring that you are testing as much of your code as possible.
diff --git a/hub/DEPLOYMENT.md b/hub/DEPLOYMENT.md
index 422b1aa7..e93fdb83 100644
--- a/hub/DEPLOYMENT.md
+++ b/hub/DEPLOYMENT.md
@@ -58,7 +58,7 @@ section in persistence/README.md file.
as shown below:
```python
-from hub.exports.db_factory import DBFactory
+from hub.persistence.db_control import DBFactory
from pathlib import Path
dotenv_path = (Path(__file__).parent / '.env').resolve()
diff --git a/hub/PYGUIDE.md b/hub/PYGUIDE.md
index 85a6113c..60c3dfdd 100644
--- a/hub/PYGUIDE.md
+++ b/hub/PYGUIDE.md
@@ -48,11 +48,11 @@ Use properties whenever it is possible. Encapsulate the access to all the calcul
```python
@property
- def object_attribute(self):
- if self._object_attribute is None:
- self._object_attribute = ...
+ def object_attribute(cls):
+ if cls._object_attribute is None:
+ cls._object_attribute = ...
...
- return self._object_attribute
+ return cls._object_attribute
```
@@ -61,12 +61,12 @@ And like in the following example for read and write properties:
```python
@property
- def object_changeable_attribute(self):
- return self._object_changeable_attribute
+ def object_changeable_attribute(cls):
+ return cls._object_changeable_attribute
@object_changeable_attribute.setter
- def object_changeable_attribute(self, value):
- self._object_changeable_attribute = value
+ def object_changeable_attribute(cls, value):
+ cls._object_changeable_attribute = value
```
@@ -75,11 +75,11 @@ If your method or attribute returns a complex object, use type hints as in this
```python
@property
- def complex_object(self) -> ComplexObject:
- return self._object_changeable_attribute
+ def complex_object(cls) -> ComplexObject:
+ return cls._object_changeable_attribute
- def new_complex_object(self, first_param, second_param) -> ComplexObject:
- other_needed_property = self.other_needed_property
+ def new_complex_object(cls, first_param, second_param) -> ComplexObject:
+ other_needed_property = cls.other_needed_property
return ComplexObject(first_param, second_param, other_needed_property)
```
@@ -89,11 +89,11 @@ Always access your variable through the method and avoid to access directly.
```python
@property
- def object_attribute(self):
- return self._object_attribute
+ def object_attribute(cls):
+ return cls._object_attribute
- def operation(self, first_param, second_param):
- return self.object_attribute * 2
+ def operation(cls, first_param, second_param):
+ return cls.object_attribute * 2
```
@@ -110,23 +110,23 @@ All public classes, properties, and methods must have code comments. Code commen
MyClass class perform models class operations
"""
- def __init__(self):
+ def __init__(cls):
@property
- def object_attribute(self):
+ def object_attribute(cls):
"""
Get my class object attribute
:return: int
"""
- return self._object_attribute
+ return cls._object_attribute
- def operation(self, first_param, second_param):
+ def operation(cls, first_param, second_param):
"""
Multiplies object_attribute by two
:return: int
"""
- return self.object_attribute * 2
+ return cls.object_attribute * 2
```
@@ -135,20 +135,20 @@ Comments at getters and setters always start with Get and Set, and identity the
```python
@property
- def object_attribute(self):
+ def object_attribute(cls):
"""
Get object attribute
:return: int
"""
- return self._object_attribute
+ return cls._object_attribute
@object_attribute.setter
- def object_attribute(self, value):
+ def object_attribute(cls, value):
"""
Set object attribute
:param value: int
"""
- self._object_attribute = value
+ cls._object_attribute = value
```
@@ -157,12 +157,12 @@ Attributes with known units should be explicit in method's comment.
```python
@property
- def distance(self):
+ def distance(cls):
"""
My class distance in meters
:return: float
"""
- return self._distance
+ return cls._distance
```
#### To do's.
diff --git a/hub/helpers/enrich_city.py b/hub/__init__.py
similarity index 100%
rename from hub/helpers/enrich_city.py
rename to hub/__init__.py
diff --git a/hub/catalog_factories/__init__.py b/hub/catalog_factories/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/construction/__init__.py b/hub/catalog_factories/construction/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/construction/nrel_catalog.py b/hub/catalog_factories/construction/nrel_catalog.py
index c9235cfe..c231b5f3 100644
--- a/hub/catalog_factories/construction/nrel_catalog.py
+++ b/hub/catalog_factories/construction/nrel_catalog.py
@@ -112,16 +112,19 @@ class NrelCatalog(Catalog):
function = archetype['@building_type']
name = f"{function} {archetype['@climate_zone']} {archetype['@reference_standard']}"
climate_zone = archetype['@climate_zone']
- construction_period = \
- ConstructionHelper().reference_standard_to_construction_period[archetype['@reference_standard']]
+ construction_period = ConstructionHelper().reference_standard_to_construction_period[
+ archetype['@reference_standard']
+ ]
average_storey_height = float(archetype['average_storey_height']['#text'])
thermal_capacity = float(archetype['thermal_capacity']['#text']) * 1000
extra_loses_due_to_thermal_bridges = float(archetype['extra_loses_due_to_thermal_bridges']['#text'])
indirect_heated_ratio = float(archetype['indirect_heated_ratio']['#text'])
- infiltration_rate_for_ventilation_system_off = \
- float(archetype['infiltration_rate_for_ventilation_system_off']['#text'])
- infiltration_rate_for_ventilation_system_on = \
- float(archetype['infiltration_rate_for_ventilation_system_on']['#text'])
+ infiltration_rate_for_ventilation_system_off = float(
+ archetype['infiltration_rate_for_ventilation_system_off']['#text']
+ )
+ infiltration_rate_for_ventilation_system_on = float(
+ archetype['infiltration_rate_for_ventilation_system_on']['#text']
+ )
archetype_constructions = []
for archetype_construction in archetype['constructions']['construction']:
diff --git a/hub/catalog_factories/construction_catalog_factory.py b/hub/catalog_factories/construction_catalog_factory.py
index 35a08d19..daebce6f 100644
--- a/hub/catalog_factories/construction_catalog_factory.py
+++ b/hub/catalog_factories/construction_catalog_factory.py
@@ -4,26 +4,22 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
+import logging
from pathlib import Path
from typing import TypeVar
from hub.catalog_factories.construction.nrel_catalog import NrelCatalog
-from hub.hub_logger import logger
from hub.helpers.utils import validate_import_export_type
from hub.catalog_factories.construction.nrcan_catalog import NrcanCatalog
Catalog = TypeVar('Catalog')
class ConstructionCatalogFactory:
- def __init__(self, file_type, base_path=None):
+ def __init__(self, handler, base_path=None):
if base_path is None:
base_path = Path(Path(__file__).parent.parent / 'data/construction')
- self._catalog_type = '_' + file_type.lower()
- class_funcs = validate_import_export_type(ConstructionCatalogFactory)
- if self._catalog_type not in class_funcs:
- err_msg = f"Wrong import type. Valid functions include {class_funcs}"
- logger.error(err_msg)
- raise Exception(err_msg)
+ self._handler = '_' + handler.lower()
+ validate_import_export_type(ConstructionCatalogFactory, handler)
self._path = base_path
@property
@@ -46,4 +42,4 @@ class ConstructionCatalogFactory:
Enrich the city given to the class using the class given handler
:return: Catalog
"""
- return getattr(self, self._catalog_type, lambda: None)
+ return getattr(self, self._handler, lambda: None)
diff --git a/hub/catalog_factories/cost/__init__.py b/hub/catalog_factories/cost/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/cost/montreal_custom_catalog.py b/hub/catalog_factories/cost/montreal_custom_catalog.py
index 894695cf..d5021b1b 100644
--- a/hub/catalog_factories/cost/montreal_custom_catalog.py
+++ b/hub/catalog_factories/cost/montreal_custom_catalog.py
@@ -15,7 +15,6 @@ from hub.catalog_factories.data_models.cost.item_description import ItemDescript
from hub.catalog_factories.data_models.cost.operational_cost import OperationalCost
from hub.catalog_factories.data_models.cost.fuel import Fuel
from hub.catalog_factories.data_models.cost.income import Income
-from hub.catalog_factories.data_models.cost.cost_helper import CostHelper
class MontrealCustomCatalog(Catalog):
@@ -53,7 +52,6 @@ class MontrealCustomCatalog(Catalog):
def _get_capital_costs(self, entry):
general_chapters = []
- chapters_titles = CostHelper().chapters_in_lod1
shell = entry['B_shell']
items_list = []
item_type = 'B10_superstructure'
@@ -125,9 +123,9 @@ class MontrealCustomCatalog(Catalog):
for archetype in archetypes:
function = archetype['@function']
municipality = archetype['@municipality']
- country = 'CA'#archetype['@country']
- lod = 0 #float(archetype['@lod'])
- currency = 'CAD'#archetype['currency']
+ country = archetype['@country']
+ lod = float(archetype['@lod'])
+ currency = archetype['currency']
capital_cost = self._get_capital_costs(archetype['capital_cost'])
operational_cost = self._get_operational_costs(archetype['operational_cost'])
end_of_life_cost = float(archetype['end_of_life_cost']['#text'])
diff --git a/hub/catalog_factories/data_models/__init__.py b/hub/catalog_factories/data_models/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/data_models/construction/__init__.py b/hub/catalog_factories/data_models/construction/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/data_models/construction/construction.py b/hub/catalog_factories/data_models/construction/construction.py
index 472f629e..0397b56d 100644
--- a/hub/catalog_factories/data_models/construction/construction.py
+++ b/hub/catalog_factories/data_models/construction/construction.py
@@ -64,4 +64,3 @@ class Construction:
:return: Window
"""
return self._window
-
diff --git a/hub/catalog_factories/data_models/cost/__init__.py b/hub/catalog_factories/data_models/cost/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/data_models/cost/cost_helper.py b/hub/catalog_factories/data_models/cost/cost_helper.py
deleted file mode 100644
index fb0d551e..00000000
--- a/hub/catalog_factories/data_models/cost/cost_helper.py
+++ /dev/null
@@ -1,48 +0,0 @@
-"""
-Cost helper
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2023 Concordia CERC group
-Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
-"""
-
-import hub.helpers.constants as cte
-from typing import Dict
-
-
-class CostHelper:
- """
- Cost helper class
- """
- _costs_units = {
- 'currency/m2': cte.CURRENCY_PER_SQM,
- 'currency/m3': cte.CURRENCY_PER_CBM,
- 'currency/kW': cte.CURRENCY_PER_KW,
- 'currency/kWh': cte.CURRENCY_PER_KWH,
- 'currency/month': cte.CURRENCY_PER_MONTH,
- 'currency/l': cte.CURRENCY_PER_LITRE,
- 'currency/kg': cte.CURRENCY_PER_KG,
- 'currency/(m3/h)': cte.CURRENCY_PER_CBM_PER_HOUR,
- '%': cte.PERCENTAGE
- }
-
- _chapters_in_lod1 = {
- 'B_shell': cte.SUPERSTRUCTURE,
- 'D_services': cte.ENVELOPE,
- 'Z_allowances_overhead_profit': cte.ALLOWANCES_OVERHEAD_PROFIT
- }
-
- @property
- def costs_units(self) -> Dict:
- """
- List of supported costs units
- :return: dict
- """
- return self._costs_units
-
- @property
- def chapters_in_lod1(self) -> Dict:
- """
- List of chapters included in lod 1
- :return: dict
- """
- return self._chapters_in_lod1
diff --git a/hub/catalog_factories/data_models/energy_systems/__init__.py b/hub/catalog_factories/data_models/energy_systems/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/data_models/energy_systems/archetype.py b/hub/catalog_factories/data_models/energy_systems/archetype.py
new file mode 100644
index 00000000..632fc999
--- /dev/null
+++ b/hub/catalog_factories/data_models/energy_systems/archetype.py
@@ -0,0 +1,42 @@
+"""
+Energy System catalog archetype
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import List
+
+from hub.catalog_factories.data_models.energy_systems.system import System
+
+
+class Archetype:
+ def __init__(self, lod, name, systems):
+
+ self._lod = lod
+ self._name = name
+ self._systems = systems
+
+ @property
+ def lod(self):
+ """
+ Get level of detail of the catalog
+ :return: string
+ """
+ return self._lod
+
+ @property
+ def name(self):
+ """
+ Get name
+ :return: string
+ """
+ return f'{self._name}_lod{self._lod}'
+
+ @property
+ def systems(self) -> List[System]:
+ """
+ Get list of equipments that compose the total energy system
+ :return: [Equipment]
+ """
+ return self._systems
diff --git a/hub/catalog_factories/data_models/energy_systems/content.py b/hub/catalog_factories/data_models/energy_systems/content.py
new file mode 100644
index 00000000..7611e1e7
--- /dev/null
+++ b/hub/catalog_factories/data_models/energy_systems/content.py
@@ -0,0 +1,50 @@
+"""
+Energy System catalog content
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+
+class Content:
+ def __init__(self, archetypes, systems, generations, distributions, emissions):
+ self._archetypes = archetypes
+ self._systems = systems
+ self._generations = generations
+ self._distributions = distributions
+ self._emissions = emissions
+
+ @property
+ def archetypes(self):
+ """
+ All archetype system clusters in the catalog
+ """
+ return self._archetypes
+
+ @property
+ def systems(self):
+ """
+ All systems in the catalog
+ """
+ return self._systems
+
+ @property
+ def generation_equipments(self):
+ """
+ All generation equipments in the catalog
+ """
+ return self._generations
+
+ @property
+ def distribution_equipments(self):
+ """
+ All distribution equipments in the catalog
+ """
+ return self._distributions
+
+ @property
+ def emission_equipments(self):
+ """
+ All emission equipments in the catalog
+ """
+ return self._emissions
diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py
new file mode 100644
index 00000000..77176eb4
--- /dev/null
+++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py
@@ -0,0 +1,92 @@
+"""
+Energy System catalog distribution system
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+
+class DistributionSystem:
+ def __init__(self, system_id, name, system_type, supply_temperature, distribution_consumption_fix_flow,
+ distribution_consumption_variable_flow, heat_losses):
+
+ self._system_id = system_id
+ self._name = name
+ self._type = system_type
+ self._supply_temperature = supply_temperature
+ self._distribution_consumption_fix_flow = distribution_consumption_fix_flow
+ self._distribution_consumption_variable_flow = distribution_consumption_variable_flow
+ self._heat_losses = heat_losses
+
+ @property
+ def id(self):
+ """
+ Get system id
+ :return: float
+ """
+ return self._system_id
+
+ @id.setter
+ def id(self, value):
+ """
+ Set system id
+ :param value: float
+ """
+ self._system_id = value
+
+ @property
+ def name(self):
+ """
+ Get name
+ :return: string
+ """
+ return self._name
+
+ @name.setter
+ def name(self, value):
+ """
+ Set name
+ :param value: string
+ """
+ self._name = value
+
+ @property
+ def type(self):
+ """
+ Get type from [air, water, refrigerant]
+ :return: string
+ """
+ return self._type
+
+ @property
+ def supply_temperature(self):
+ """
+ Get supply_temperature in degree Celsius
+ :return: float
+ """
+ return self._supply_temperature
+
+ @property
+ def distribution_consumption_fix_flow(self):
+ """
+ Get distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W)
+ :return: float
+ """
+ return self._distribution_consumption_fix_flow
+
+ @property
+ def distribution_consumption_variable_flow(self):
+ """
+ Get distribution_consumption if the pump or fan work at variable mass or volume flow in ratio
+ over energy produced (Wh/Wh)
+ :return: float
+ """
+ return self._distribution_consumption_variable_flow
+
+ @property
+ def heat_losses(self):
+ """
+ Get heat_losses in ratio over energy produced
+ :return: float
+ """
+ return self._heat_losses
diff --git a/hub/catalog_factories/data_models/energy_systems/emission_system.py b/hub/catalog_factories/data_models/energy_systems/emission_system.py
new file mode 100644
index 00000000..61f917fc
--- /dev/null
+++ b/hub/catalog_factories/data_models/energy_systems/emission_system.py
@@ -0,0 +1,63 @@
+"""
+Energy System catalog emission system
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+
+class EmissionSystem:
+ def __init__(self, system_id, name, system_type, parasitic_energy_consumption):
+
+ self._system_id = system_id
+ self._name = name
+ self._type = system_type
+ self._parasitic_energy_consumption = parasitic_energy_consumption
+
+ @property
+ def id(self):
+ """
+ Get system id
+ :return: float
+ """
+ return self._system_id
+
+ @id.setter
+ def id(self, value):
+ """
+ Set system id
+ :param value: float
+ """
+ self._system_id = value
+
+ @property
+ def name(self):
+ """
+ Get name
+ :return: string
+ """
+ return self._name
+
+ @name.setter
+ def name(self, value):
+ """
+ Set name
+ :param value: string
+ """
+ self._name = value
+
+ @property
+ def type(self):
+ """
+ Get type
+ :return: string
+ """
+ return self._type
+
+ @property
+ def parasitic_energy_consumption(self):
+ """
+ Get parasitic_energy_consumption in ratio (Wh/Wh)
+ :return: float
+ """
+ return self._parasitic_energy_consumption
diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py
new file mode 100644
index 00000000..79665f76
--- /dev/null
+++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py
@@ -0,0 +1,139 @@
+"""
+Energy System catalog generation system
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from __future__ import annotations
+from typing import Union
+
+
+class GenerationSystem:
+ def __init__(self, system_id, name, system_type, fuel_type, source_types, heat_efficiency, cooling_efficiency,
+ electricity_efficiency, source_temperature, source_mass_flow, storage, auxiliary_equipment):
+
+ self._system_id = system_id
+ self._name = name
+ self._type = system_type
+ self._fuel_type = fuel_type
+ self._source_types = source_types
+ self._heat_efficiency = heat_efficiency
+ self._cooling_efficiency = cooling_efficiency
+ self._electricity_efficiency = electricity_efficiency
+ self._source_temperature = source_temperature
+ self._source_mass_flow = source_mass_flow
+ self._storage = storage
+ self._auxiliary_equipment = auxiliary_equipment
+
+ @property
+ def id(self):
+ """
+ Get system id
+ :return: float
+ """
+ return self._system_id
+
+ @id.setter
+ def id(self, value):
+ """
+ Set system id
+ :param value: float
+ """
+ self._system_id = value
+
+ @property
+ def name(self):
+ """
+ Get name
+ :return: string
+ """
+ return self._name
+
+ @name.setter
+ def name(self, value):
+ """
+ Set name
+ :param value: string
+ """
+ self._name = value
+
+ @property
+ def type(self):
+ """
+ Get type
+ :return: string
+ """
+ return self._type
+
+ @property
+ def fuel_type(self):
+ """
+ Get fuel_type from [renewable, gas, diesel, electricity, wood, coal]
+ :return: string
+ """
+ return self._fuel_type
+
+ @property
+ def source_types(self):
+ """
+ Get source_type from [air, water, geothermal, district_heating, grid, on_site_electricity]
+ :return: [string]
+ """
+ return self._source_types
+
+ @property
+ def heat_efficiency(self):
+ """
+ Get heat_efficiency
+ :return: float
+ """
+ return self._heat_efficiency
+
+ @property
+ def cooling_efficiency(self):
+ """
+ Get cooling_efficiency
+ :return: float
+ """
+ return self._cooling_efficiency
+
+ @property
+ def electricity_efficiency(self):
+ """
+ Get electricity_efficiency
+ :return: float
+ """
+ return self._electricity_efficiency
+
+ @property
+ def source_temperature(self):
+ """
+ Get source_temperature in degree Celsius
+ :return: float
+ """
+ return self._source_temperature
+
+ @property
+ def source_mass_flow(self):
+ """
+ Get source_mass_flow in kg/s
+ :return: float
+ """
+ return self._source_mass_flow
+
+ @property
+ def storage(self):
+ """
+ Get boolean storage exists
+ :return: bool
+ """
+ return self._storage
+
+ @property
+ def auxiliary_equipment(self) -> Union[None, GenerationSystem]:
+ """
+ Get auxiliary_equipment
+ :return: GenerationSystem
+ """
+ return self._auxiliary_equipment
diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py
new file mode 100644
index 00000000..f03a9725
--- /dev/null
+++ b/hub/catalog_factories/data_models/energy_systems/system.py
@@ -0,0 +1,87 @@
+"""
+Energy System catalog equipment
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import Union
+
+from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem
+from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem
+from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem
+
+
+class System:
+ def __init__(self,
+ lod,
+ system_id,
+ name,
+ demand_types,
+ generation_system,
+ distribution_system,
+ emission_system):
+
+ self._lod = lod
+ self._system_id = system_id
+ self._name = name
+ self._demand_types = demand_types
+ self._generation_system = generation_system
+ self._distribution_system = distribution_system
+ self._emission_system = emission_system
+
+ @property
+ def lod(self):
+ """
+ Get level of detail of the catalog
+ :return: string
+ """
+ return self._lod
+
+ @property
+ def id(self):
+ """
+ Get equipment id
+ :return: string
+ """
+ return self._system_id
+
+ @property
+ def name(self):
+ """
+ Get name
+ :return: string
+ """
+ return f'{self._name}_lod{self._lod}'
+
+ @property
+ def demand_types(self):
+ """
+ Get demand able to cover from [heating, cooling, domestic_hot_water, electricity]
+ :return: [string]
+ """
+ return self._demand_types
+
+ @property
+ def generation_system(self) -> GenerationSystem:
+ """
+ Get generation system
+ :return: GenerationSystem
+ """
+ return self._generation_system
+
+ @property
+ def distribution_system(self) -> Union[None, DistributionSystem]:
+ """
+ Get distribution system
+ :return: DistributionSystem
+ """
+ return self._distribution_system
+
+ @property
+ def emission_system(self) -> Union[None, EmissionSystem]:
+ """
+ Get emission system
+ :return: EmissionSystem
+ """
+ return self._emission_system
diff --git a/hub/catalog_factories/data_models/greenery/__init__.py b/hub/catalog_factories/data_models/greenery/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/data_models/greenery/content.py b/hub/catalog_factories/data_models/greenery/content.py
index e5160c61..528b54a0 100644
--- a/hub/catalog_factories/data_models/greenery/content.py
+++ b/hub/catalog_factories/data_models/greenery/content.py
@@ -32,4 +32,3 @@ class Content:
All soils in the catalog
"""
return self._soils
-
diff --git a/hub/catalog_factories/data_models/greenery/plant_percentage.py b/hub/catalog_factories/data_models/greenery/plant_percentage.py
index e7d8e496..778aea98 100644
--- a/hub/catalog_factories/data_models/greenery/plant_percentage.py
+++ b/hub/catalog_factories/data_models/greenery/plant_percentage.py
@@ -5,10 +5,10 @@ Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
-from hub.catalog_factories.data_models.greenery.plant import Plant as libs_plant
+from hub.catalog_factories.data_models.greenery.plant import Plant as hub_plant
-class PlantPercentage(libs_plant):
+class PlantPercentage(hub_plant):
def __init__(self, percentage, plant_category, plant):
super().__init__(plant_category, plant)
diff --git a/hub/catalog_factories/data_models/usages/__init__.py b/hub/catalog_factories/data_models/usages/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/data_models/usages/domestic_hot_water.py b/hub/catalog_factories/data_models/usages/domestic_hot_water.py
index a34a4c65..0eb9d9f5 100644
--- a/hub/catalog_factories/data_models/usages/domestic_hot_water.py
+++ b/hub/catalog_factories/data_models/usages/domestic_hot_water.py
@@ -2,7 +2,7 @@
Usage catalog domestic hot water
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2023 Concordia CERC group
-Project Coder Pilar Monsalvete Álvarez de Uribarri pilar.monsalvete@concordia.ca
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
from typing import Union, List
diff --git a/hub/catalog_factories/data_models/usages/ocupancy.py b/hub/catalog_factories/data_models/usages/ocupancy.py
index b00a3a64..e2d7269a 100644
--- a/hub/catalog_factories/data_models/usages/ocupancy.py
+++ b/hub/catalog_factories/data_models/usages/ocupancy.py
@@ -2,7 +2,7 @@
Usage catalog occupancy
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
-Project Coder Guille Gutierrez Morote Guillermo.GutierrezMorote@concordia.ca
+Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca
"""
from typing import Union, List
diff --git a/hub/catalog_factories/data_models/usages/schedule.py b/hub/catalog_factories/data_models/usages/schedule.py
index d7787031..5f28e37d 100644
--- a/hub/catalog_factories/data_models/usages/schedule.py
+++ b/hub/catalog_factories/data_models/usages/schedule.py
@@ -73,4 +73,3 @@ class Schedule:
:return: None or [str]
"""
return self._day_types
-
diff --git a/hub/catalog_factories/data_models/usages/thermal_control.py b/hub/catalog_factories/data_models/usages/thermal_control.py
index 113f4190..0df90b0e 100644
--- a/hub/catalog_factories/data_models/usages/thermal_control.py
+++ b/hub/catalog_factories/data_models/usages/thermal_control.py
@@ -18,8 +18,7 @@ class ThermalControl:
hvac_availability_schedules,
heating_set_point_schedules,
cooling_set_point_schedules):
- #todo: eliminate negative value
- deltaTsetpoint=0
+
self._mean_heating_set_point = mean_heating_set_point
self._heating_set_back = heating_set_back
self._mean_cooling_set_point = mean_cooling_set_point
diff --git a/hub/catalog_factories/data_models/usages/usage.py b/hub/catalog_factories/data_models/usages/usage.py
index 07ac17bc..ef80af70 100644
--- a/hub/catalog_factories/data_models/usages/usage.py
+++ b/hub/catalog_factories/data_models/usages/usage.py
@@ -29,7 +29,6 @@ class Usage:
self._days_year = days_year
self._mechanical_air_change = mechanical_air_change
self._ventilation_rate = ventilation_rate
- # classes
self._occupancy = occupancy
self._lighting = lighting
self._appliances = appliances
diff --git a/hub/catalog_factories/energy_systems/__init__.py b/hub/catalog_factories/energy_systems/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py
new file mode 100644
index 00000000..0727e3d0
--- /dev/null
+++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py
@@ -0,0 +1,248 @@
+"""
+Montreal custom energy systems 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 xmltodict
+
+from hub.catalog_factories.catalog import Catalog
+from hub.catalog_factories.data_models.energy_systems.system import System
+from hub.catalog_factories.data_models.energy_systems.content import Content
+from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem
+from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem
+from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem
+from hub.catalog_factories.data_models.energy_systems.archetype import Archetype
+
+
+class MontrealCustomCatalog(Catalog):
+ def __init__(self, path):
+ path = str(path / 'montreal_custom_systems.xml')
+ with open(path) as xml:
+ self._archetypes = xmltodict.parse(xml.read(), force_list=('system', 'system_cluster', 'equipment',
+ 'demand', 'system_id'))
+
+ self._lod = float(self._archetypes['catalog']['@lod'])
+
+ self._catalog_generation_equipments = self._load_generation_equipments()
+ self._catalog_distribution_equipments = self._load_distribution_equipments()
+ self._catalog_emission_equipments = self._load_emission_equipments()
+ self._catalog_systems = self._load_systems()
+ self._catalog_archetypes = self._load_archetypes()
+
+ # store the full catalog data model in self._content
+ self._content = Content(self._catalog_archetypes,
+ self._catalog_systems,
+ self._catalog_generation_equipments,
+ self._catalog_distribution_equipments,
+ self._catalog_emission_equipments)
+
+ def _load_generation_equipments(self):
+ _equipments = []
+ equipments = self._archetypes['catalog']['generation_equipments']['equipment']
+ for equipment in equipments:
+ equipment_id = float(equipment['@id'])
+ equipment_type = equipment['@type']
+ fuel_type = equipment['@fuel_type']
+ name = equipment['name']
+ heating_efficiency = None
+ if 'heating_efficiency' in equipment:
+ heating_efficiency = float(equipment['heating_efficiency'])
+ cooling_efficiency = None
+ if 'cooling_efficiency' in equipment:
+ cooling_efficiency = float(equipment['cooling_efficiency'])
+ electricity_efficiency = None
+ if 'electrical_efficiency' in equipment:
+ electricity_efficiency = float(equipment['electrical_efficiency'])
+ storage = eval(equipment['storage'].capitalize())
+ generation_system = GenerationSystem(equipment_id,
+ name,
+ equipment_type,
+ fuel_type,
+ None,
+ heating_efficiency,
+ cooling_efficiency,
+ electricity_efficiency,
+ None,
+ None,
+ storage,
+ None)
+
+ _equipments.append(generation_system)
+ return _equipments
+
+ def _load_distribution_equipments(self):
+ _equipments = []
+ equipments = self._archetypes['catalog']['distribution_equipments']['equipment']
+ for equipment in equipments:
+ equipment_id = float(equipment['@id'])
+ equipment_type = equipment['@type']
+ name = equipment['name']
+ distribution_heat_losses = None
+ if 'distribution_heat_losses' in equipment:
+ distribution_heat_losses = float(equipment['distribution_heat_losses']['#text']) / 100
+ distribution_consumption_fix_flow = None
+ if 'distribution_consumption_fix_flow' in equipment:
+ distribution_consumption_fix_flow = float(equipment['distribution_consumption_fix_flow']['#text']) / 100
+ distribution_consumption_variable_flow = None
+ if 'distribution_consumption_variable_flow' in equipment:
+ distribution_consumption_variable_flow = float(equipment['distribution_consumption_variable_flow']['#text']) / 100
+
+ distribution_system = DistributionSystem(equipment_id,
+ name,
+ equipment_type,
+ None,
+ distribution_consumption_fix_flow,
+ distribution_consumption_variable_flow,
+ distribution_heat_losses)
+
+ _equipments.append(distribution_system)
+ return _equipments
+
+ def _load_emission_equipments(self):
+ _equipments = []
+ equipments = self._archetypes['catalog']['dissipation_equipments']['equipment']
+ for equipment in equipments:
+ equipment_id = float(equipment['@id'])
+ equipment_type = equipment['@type']
+ name = equipment['name']
+ parasitic_consumption = None
+ if 'parasitic_consumption' in equipment:
+ parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100
+
+ emission_system = EmissionSystem(equipment_id,
+ name,
+ equipment_type,
+ parasitic_consumption)
+
+ _equipments.append(emission_system)
+ return _equipments
+
+ def _load_systems(self):
+ _catalog_systems = []
+ systems = self._archetypes['catalog']['systems']['system']
+ for system in systems:
+ system_id = float(system['@id'])
+ name = system['name']
+ demands = system['demands']['demand']
+ generation_equipment = system['equipments']['generation_id']
+ _generation_equipment = None
+ for equipment_archetype in self._catalog_generation_equipments:
+ if int(equipment_archetype.id) == int(generation_equipment):
+ _generation_equipment = equipment_archetype
+ distribution_equipment = system['equipments']['distribution_id']
+ _distribution_equipment = None
+ for equipment_archetype in self._catalog_distribution_equipments:
+ if int(equipment_archetype.id) == int(distribution_equipment):
+ _distribution_equipment = equipment_archetype
+ emission_equipment = system['equipments']['dissipation_id']
+ _emission_equipment = None
+ for equipment_archetype in self._catalog_emission_equipments:
+ if int(equipment_archetype.id) == int(emission_equipment):
+ _emission_equipment = equipment_archetype
+
+ _catalog_systems.append(System(self._lod,
+ system_id,
+ name,
+ demands,
+ _generation_equipment,
+ _distribution_equipment,
+ _emission_equipment))
+ return _catalog_systems
+
+ def _load_archetypes(self):
+ _catalog_archetypes = []
+ system_clusters = self._archetypes['catalog']['system_clusters']['system_cluster']
+ for system_cluster in system_clusters:
+ name = system_cluster['@name']
+ systems = system_cluster['systems']['system_id']
+ _systems = []
+ for system in systems:
+ for system_archetype in self._catalog_systems:
+ if int(system_archetype.id) == int(system):
+ _systems.append(system_archetype)
+ _catalog_archetypes.append(Archetype(self._lod, name, _systems))
+ return _catalog_archetypes
+
+ def names(self, category=None):
+ """
+ Get the catalog elements names
+ :parm: optional category filter
+ """
+ if category is None:
+ _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [],
+ 'emission_equipments':[]}
+ for archetype in self._content.archetypes:
+ _names['archetypes'].append(archetype.name)
+ for system in self._content.systems:
+ _names['systems'].append(system.name)
+ for equipment in self._content.generation_equipments:
+ _names['generation_equipments'].append(equipment.name)
+ for equipment in self._content.distribution_equipments:
+ _names['distribution_equipments'].append(equipment.name)
+ for equipment in self._content.emission_equipments:
+ _names['emission_equipments'].append(equipment.name)
+ else:
+ _names = {category: []}
+ if category.lower() == 'archetypes':
+ for archetype in self._content.archetypes:
+ _names[category].append(archetype.name)
+ elif category.lower() == 'systems':
+ for system in self._content.systems:
+ _names[category].append(system.name)
+ elif category.lower() == 'generation_equipments':
+ for system in self._content.generation_equipments:
+ _names[category].append(system.name)
+ elif category.lower() == 'distribution_equipments':
+ for system in self._content.distribution_equipments:
+ _names[category].append(system.name)
+ elif category.lower() == 'emission_equipments':
+ for system in self._content.emission_equipments:
+ _names[category].append(system.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
+ else:
+ if category.lower() == 'archetypes':
+ return self._content.archetypes
+ elif category.lower() == 'systems':
+ return self._content.systems
+ elif category.lower() == 'generation_equipments':
+ return self._content.generation_equipments
+ elif category.lower() == 'distribution_equipments':
+ return self._content.distribution_equipments
+ elif category.lower() == 'emission_equipments':
+ return self._content.emission_equipments
+ else:
+ 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.systems:
+ if entry.name.lower() == name.lower():
+ return entry
+ for entry in self._content.generation_equipments:
+ if entry.name.lower() == name.lower():
+ return entry
+ for entry in self._content.distribution_equipments:
+ if entry.name.lower() == name.lower():
+ return entry
+ for entry in self._content.emission_equipments:
+ if entry.name.lower() == name.lower():
+ return entry
+ raise IndexError(f"{name} doesn't exists in the catalog")
diff --git a/hub/catalog_factories/energy_systems/nrcan_catalog.py b/hub/catalog_factories/energy_systems/nrcan_catalog.py
deleted file mode 100644
index c74401ae..00000000
--- a/hub/catalog_factories/energy_systems/nrcan_catalog.py
+++ /dev/null
@@ -1,190 +0,0 @@
-"""
-NRCAN energy systems 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 json
-import urllib.request
-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.ocupancy import Occupancy
-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 NrcanCatalog(Catalog):
- def __init__(self, path):
- path = str(path / 'nrcan.xml')
- self._content = None
- self._schedules = {}
- with open(path) as xml:
- self._metadata = xmltodict.parse(xml.read())
- self._base_url = self._metadata['nrcan']['@base_url']
- self._load_schedules()
- self._content = Content(self._load_archetypes())
-
- def _load_archetypes(self):
- usages = []
- name = self._metadata['nrcan']
- url = f'{self._base_url}{name["space_types_location"]}'
- with urllib.request.urlopen(url) as json_file:
- space_types = json.load(json_file)['tables']['space_types']['table']
-# space_types = [st for st in space_types if st['building_type'] == 'Space Function']
- space_types = [st for st in space_types if st['space_type'] == 'WholeBuilding']
- for space_type in space_types:
-# usage_type = space_type['space_type']
- usage_type = space_type['building_type']
- 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')
- #todo: get -1 out of the setpoint
- heating_setpoint_schedule_name = space_type['heating_setpoint_schedule']-1
- cooling_setpoint_schedule_name = space_type['cooling_setpoint_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)
-
- occupancy_density = space_type['occupancy_per_area']
-
- # ACH
- mechanical_air_change = space_type['ventilation_air_changes']
- # cfm/ft2 to m3/m2.s
- ventilation_rate = space_type['ventilation_per_area'] / (cte.METERS_TO_FEET * cte.MINUTES_TO_SECONDS)
- if ventilation_rate == 0:
- # cfm/person to m3/m2.s
- ventilation_rate = space_type['ventilation_per_person'] / occupancy_density\
- / (cte.METERS_TO_FEET * cte.MINUTES_TO_SECONDS)
-
- # W/sqft to W/m2
- lighting_density = space_type['lighting_per_area'] * cte.METERS_TO_FEET * cte.METERS_TO_FEET
- 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
- # W/sqft to W/m2
- appliances_density = space_type['electric_equipment_per_area'] * cte.METERS_TO_FEET * cte.METERS_TO_FEET
- 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
-
- 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)
- 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))
- return usages
-
- 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}]')
-
- def entries(self, category=None):
- """
- Get the catalog elements
- :parm: optional category filter
- """
- if category is None:
- return self._content
- else:
- if category.lower() == 'archetypes':
- return self._content.archetypes
- elif category.lower() == 'constructions':
- return self._content.constructions
- elif category.lower() == 'materials':
- return self._content.materials
- elif category.lower() == 'windows':
- return self._content.windows
- else:
- 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/energy_systems_catalog_factory.py b/hub/catalog_factories/energy_systems_catalog_factory.py
index 0bfc9459..b7cf597c 100644
--- a/hub/catalog_factories/energy_systems_catalog_factory.py
+++ b/hub/catalog_factories/energy_systems_catalog_factory.py
@@ -1,37 +1,32 @@
"""
-Usage catalog factory, publish the usage information
+Energy Systems catalog factory, publish the energy systems information
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Álvarez de Uribarri pilar.monsalvete@concordia.ca
"""
+import logging
from pathlib import Path
from typing import TypeVar
-from hub.catalog_factories.energy_systems.nrcan_catalog import NrcanCatalog
-from hub.hub_logger import logger
+from hub.catalog_factories.energy_systems.montreal_custom_catalog import MontrealCustomCatalog
from hub.helpers.utils import validate_import_export_type
Catalog = TypeVar('Catalog')
-class UsageCatalogFactory:
- def __init__(self, file_type, base_path=None):
+class EnergySystemsCatalogFactory:
+ def __init__(self, handler, base_path=None):
if base_path is None:
base_path = Path(Path(__file__).parent.parent / 'data/energy_systems')
- self._catalog_type = '_' + file_type.lower()
- class_funcs = validate_import_export_type(UsageCatalogFactory)
- if self._catalog_type not in class_funcs:
- err_msg = f"Wrong import type. Valid functions include {class_funcs}"
- logger.error(err_msg)
- raise Exception(err_msg)
+ self._handler = '_' + handler.lower()
+ validate_import_export_type(EnergySystemsCatalogFactory, handler)
self._path = base_path
@property
- def _nrcan(self):
+ def _montreal_custom(self):
"""
Retrieve NRCAN catalog
"""
- # nrcan retrieves the data directly from github
- return NrcanCatalog(self._path)
+ return MontrealCustomCatalog(self._path)
@property
def catalog(self) -> Catalog:
@@ -39,4 +34,4 @@ class UsageCatalogFactory:
Enrich the city given to the class using the class given handler
:return: Catalog
"""
- return getattr(self, self._catalog_type, lambda: None)
+ return getattr(self, self._handler, lambda: None)
diff --git a/hub/catalog_factories/greenery/__init__.py b/hub/catalog_factories/greenery/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/greenery/ecore_greenery/greenerycatalog.py b/hub/catalog_factories/greenery/ecore_greenery/greenerycatalog.py
index 30ac116c..9d1551c7 100644
--- a/hub/catalog_factories/greenery/ecore_greenery/greenerycatalog.py
+++ b/hub/catalog_factories/greenery/ecore_greenery/greenerycatalog.py
@@ -15,304 +15,304 @@ getEClassifier = partial(Ecore.getEClassifier, searchspace=eClassifiers)
Management = EEnum('Management', literals=['Intensive', 'Extensive', 'SemiIntensive', 'NA'])
Roughness = EEnum('Roughness', literals=['VeryRough', 'Rough',
- 'MediumRough', 'MediumSmooth', 'Smooth', 'VerySmooth'])
+ 'MediumRough', 'MediumSmooth', 'Smooth', 'VerySmooth'])
class Soil(EObject, metaclass=MetaEClass):
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- roughness = EAttribute(eType=Roughness, unique=True, derived=False,
- changeable=True, default_value=Roughness.MediumRough)
- conductivityOfDrySoil = EAttribute(
- eType=EString, unique=True, derived=False, changeable=True, default_value='1.0 W/(m*K)')
- densityOfDrySoil = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='1100 kg/m³')
- specificHeatOfDrySoil = EAttribute(
- eType=EString, unique=True, derived=False, changeable=True, default_value='1200 J/(kg*K)')
- thermalAbsorptance = EAttribute(eType=EString, unique=True,
- derived=False, changeable=True, default_value='0.9')
- solarAbsorptance = EAttribute(eType=EString, unique=True,
- derived=False, changeable=True, default_value='0.7')
- visibleAbsorptance = EAttribute(eType=EString, unique=True,
- derived=False, changeable=True, default_value='0.75')
- saturationVolumetricMoistureContent = EAttribute(
- eType=EString, unique=True, derived=False, changeable=True, default_value='0.0')
- residualVolumetricMoistureContent = EAttribute(
- eType=EString, unique=True, derived=False, changeable=True, default_value='0.05')
- initialVolumetricMoistureContent = EAttribute(
- eType=EString, unique=True, derived=False, changeable=True, default_value='0.1')
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ roughness = EAttribute(eType=Roughness, unique=True, derived=False,
+ changeable=True, default_value=Roughness.MediumRough)
+ conductivityOfDrySoil = EAttribute(
+ eType=EString, unique=True, derived=False, changeable=True, default_value='1.0 W/(m*K)')
+ densityOfDrySoil = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='1100 kg/m³')
+ specificHeatOfDrySoil = EAttribute(
+ eType=EString, unique=True, derived=False, changeable=True, default_value='1200 J/(kg*K)')
+ thermalAbsorptance = EAttribute(eType=EString, unique=True,
+ derived=False, changeable=True, default_value='0.9')
+ solarAbsorptance = EAttribute(eType=EString, unique=True,
+ derived=False, changeable=True, default_value='0.7')
+ visibleAbsorptance = EAttribute(eType=EString, unique=True,
+ derived=False, changeable=True, default_value='0.75')
+ saturationVolumetricMoistureContent = EAttribute(
+ eType=EString, unique=True, derived=False, changeable=True, default_value='0.0')
+ residualVolumetricMoistureContent = EAttribute(
+ eType=EString, unique=True, derived=False, changeable=True, default_value='0.05')
+ initialVolumetricMoistureContent = EAttribute(
+ eType=EString, unique=True, derived=False, changeable=True, default_value='0.1')
- def __init__(self, *, name=None, roughness=None, conductivityOfDrySoil=None, densityOfDrySoil=None, specificHeatOfDrySoil=None, thermalAbsorptance=None, solarAbsorptance=None, visibleAbsorptance=None, saturationVolumetricMoistureContent=None, residualVolumetricMoistureContent=None, initialVolumetricMoistureContent=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, name=None, roughness=None, conductivityOfDrySoil=None, densityOfDrySoil=None, specificHeatOfDrySoil=None, thermalAbsorptance=None, solarAbsorptance=None, visibleAbsorptance=None, saturationVolumetricMoistureContent=None, residualVolumetricMoistureContent=None, initialVolumetricMoistureContent=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
- if roughness is not None:
- self.roughness = roughness
+ if roughness is not None:
+ self.roughness = roughness
- if conductivityOfDrySoil is not None:
- self.conductivityOfDrySoil = conductivityOfDrySoil
+ if conductivityOfDrySoil is not None:
+ self.conductivityOfDrySoil = conductivityOfDrySoil
- if densityOfDrySoil is not None:
- self.densityOfDrySoil = densityOfDrySoil
+ if densityOfDrySoil is not None:
+ self.densityOfDrySoil = densityOfDrySoil
- if specificHeatOfDrySoil is not None:
- self.specificHeatOfDrySoil = specificHeatOfDrySoil
+ if specificHeatOfDrySoil is not None:
+ self.specificHeatOfDrySoil = specificHeatOfDrySoil
- if thermalAbsorptance is not None:
- self.thermalAbsorptance = thermalAbsorptance
+ if thermalAbsorptance is not None:
+ self.thermalAbsorptance = thermalAbsorptance
- if solarAbsorptance is not None:
- self.solarAbsorptance = solarAbsorptance
+ if solarAbsorptance is not None:
+ self.solarAbsorptance = solarAbsorptance
- if visibleAbsorptance is not None:
- self.visibleAbsorptance = visibleAbsorptance
+ if visibleAbsorptance is not None:
+ self.visibleAbsorptance = visibleAbsorptance
- if saturationVolumetricMoistureContent is not None:
- self.saturationVolumetricMoistureContent = saturationVolumetricMoistureContent
+ if saturationVolumetricMoistureContent is not None:
+ self.saturationVolumetricMoistureContent = saturationVolumetricMoistureContent
- if residualVolumetricMoistureContent is not None:
- self.residualVolumetricMoistureContent = residualVolumetricMoistureContent
+ if residualVolumetricMoistureContent is not None:
+ self.residualVolumetricMoistureContent = residualVolumetricMoistureContent
- if initialVolumetricMoistureContent is not None:
- self.initialVolumetricMoistureContent = initialVolumetricMoistureContent
+ if initialVolumetricMoistureContent is not None:
+ self.initialVolumetricMoistureContent = initialVolumetricMoistureContent
class Plant(EObject, metaclass=MetaEClass):
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- height = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='0.1 m')
- leafAreaIndex = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='2.5')
- leafReflectivity = EAttribute(eType=EString, unique=True,
- derived=False, changeable=True, default_value='0.1')
- leafEmissivity = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='0.9')
- minimalStomatalResistance = EAttribute(
- eType=EString, unique=True, derived=False, changeable=True, default_value='100.0 s/m')
- co2Sequestration = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='kgCO₂eq')
- growsOn = EReference(ordered=True, unique=True, containment=False, derived=False, upper=-1)
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ height = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='0.1 m')
+ leafAreaIndex = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='2.5')
+ leafReflectivity = EAttribute(eType=EString, unique=True,
+ derived=False, changeable=True, default_value='0.1')
+ leafEmissivity = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='0.9')
+ minimalStomatalResistance = EAttribute(
+ eType=EString, unique=True, derived=False, changeable=True, default_value='100.0 s/m')
+ co2Sequestration = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='kgCO₂eq')
+ growsOn = EReference(ordered=True, unique=True, containment=False, derived=False, upper=-1)
- def __init__(self, *, name=None, height=None, leafAreaIndex=None, leafReflectivity=None, leafEmissivity=None, minimalStomatalResistance=None, growsOn=None, co2Sequestration=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, name=None, height=None, leafAreaIndex=None, leafReflectivity=None, leafEmissivity=None, minimalStomatalResistance=None, growsOn=None, co2Sequestration=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
- if height is not None:
- self.height = height
+ if height is not None:
+ self.height = height
- if leafAreaIndex is not None:
- self.leafAreaIndex = leafAreaIndex
+ if leafAreaIndex is not None:
+ self.leafAreaIndex = leafAreaIndex
- if leafReflectivity is not None:
- self.leafReflectivity = leafReflectivity
+ if leafReflectivity is not None:
+ self.leafReflectivity = leafReflectivity
- if leafEmissivity is not None:
- self.leafEmissivity = leafEmissivity
+ if leafEmissivity is not None:
+ self.leafEmissivity = leafEmissivity
- if minimalStomatalResistance is not None:
- self.minimalStomatalResistance = minimalStomatalResistance
+ if minimalStomatalResistance is not None:
+ self.minimalStomatalResistance = minimalStomatalResistance
- if co2Sequestration is not None:
- self.co2Sequestration = co2Sequestration
+ if co2Sequestration is not None:
+ self.co2Sequestration = co2Sequestration
- if growsOn:
- self.growsOn.extend(growsOn)
+ if growsOn:
+ self.growsOn.extend(growsOn)
class SupportEnvelope(EObject, metaclass=MetaEClass):
- roughness = EAttribute(eType=Roughness, unique=True, derived=False,
- changeable=True, default_value=Roughness.MediumRough)
- solarAbsorptance = EAttribute(eType=EDouble, unique=True,
+ roughness = EAttribute(eType=Roughness, unique=True, derived=False,
+ changeable=True, default_value=Roughness.MediumRough)
+ solarAbsorptance = EAttribute(eType=EDouble, unique=True,
+ derived=False, changeable=True, default_value=0.0)
+ conductivity = EAttribute(eType=EDouble, unique=True, derived=False,
+ changeable=True, default_value=0.0)
+ visibleAbsorptance = EAttribute(eType=EDouble, unique=True,
+ derived=False, changeable=True, default_value=0.0)
+ specificHeat = EAttribute(eType=EDouble, unique=True, derived=False,
+ changeable=True, default_value=0.0)
+ density = EAttribute(eType=EDouble, unique=True, derived=False,
+ changeable=True, default_value=0.0)
+ thermalAbsorptance = EAttribute(eType=EDouble, unique=True,
derived=False, changeable=True, default_value=0.0)
- conductivity = EAttribute(eType=EDouble, unique=True, derived=False,
- changeable=True, default_value=0.0)
- visibleAbsorptance = EAttribute(eType=EDouble, unique=True,
- derived=False, changeable=True, default_value=0.0)
- specificHeat = EAttribute(eType=EDouble, unique=True, derived=False,
- changeable=True, default_value=0.0)
- density = EAttribute(eType=EDouble, unique=True, derived=False,
- changeable=True, default_value=0.0)
- thermalAbsorptance = EAttribute(eType=EDouble, unique=True,
- derived=False, changeable=True, default_value=0.0)
- def __init__(self, *, roughness=None, solarAbsorptance=None, conductivity=None, visibleAbsorptance=None, specificHeat=None, density=None, thermalAbsorptance=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, roughness=None, solarAbsorptance=None, conductivity=None, visibleAbsorptance=None, specificHeat=None, density=None, thermalAbsorptance=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if roughness is not None:
- self.roughness = roughness
+ if roughness is not None:
+ self.roughness = roughness
- if solarAbsorptance is not None:
- self.solarAbsorptance = solarAbsorptance
+ if solarAbsorptance is not None:
+ self.solarAbsorptance = solarAbsorptance
- if conductivity is not None:
- self.conductivity = conductivity
+ if conductivity is not None:
+ self.conductivity = conductivity
- if visibleAbsorptance is not None:
- self.visibleAbsorptance = visibleAbsorptance
+ if visibleAbsorptance is not None:
+ self.visibleAbsorptance = visibleAbsorptance
- if specificHeat is not None:
- self.specificHeat = specificHeat
+ if specificHeat is not None:
+ self.specificHeat = specificHeat
- if density is not None:
- self.density = density
+ if density is not None:
+ self.density = density
- if thermalAbsorptance is not None:
- self.thermalAbsorptance = thermalAbsorptance
+ if thermalAbsorptance is not None:
+ self.thermalAbsorptance = thermalAbsorptance
class GreeneryCatalog(EObject, metaclass=MetaEClass):
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- description = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- source = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- plantCategories = EReference(ordered=True, unique=True,
- containment=True, derived=False, upper=-1)
- vegetationCategories = EReference(ordered=True, unique=True,
- containment=True, derived=False, upper=-1)
- soils = EReference(ordered=True, unique=True, containment=True, derived=False, upper=-1)
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ description = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ source = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ plantCategories = EReference(ordered=True, unique=True,
+ containment=True, derived=False, upper=-1)
+ vegetationCategories = EReference(ordered=True, unique=True,
+ containment=True, derived=False, upper=-1)
+ soils = EReference(ordered=True, unique=True, containment=True, derived=False, upper=-1)
- def __init__(self, *, name=None, description=None, source=None, plantCategories=None, vegetationCategories=None, soils=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, name=None, description=None, source=None, plantCategories=None, vegetationCategories=None, soils=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
- if description is not None:
- self.description = description
+ if description is not None:
+ self.description = description
- if source is not None:
- self.source = source
+ if source is not None:
+ self.source = source
- if plantCategories:
- self.plantCategories.extend(plantCategories)
+ if plantCategories:
+ self.plantCategories.extend(plantCategories)
- if vegetationCategories:
- self.vegetationCategories.extend(vegetationCategories)
+ if vegetationCategories:
+ self.vegetationCategories.extend(vegetationCategories)
- if soils:
- self.soils.extend(soils)
+ if soils:
+ self.soils.extend(soils)
class PlantCategory(EObject, metaclass=MetaEClass):
- """Excluding (that is non-overlapping) categories like Trees, Hedeges, Grasses that help users finding a specific biol. plant species."""
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- plants = EReference(ordered=True, unique=True, containment=True, derived=False, upper=-1)
+ """Excluding (that is non-overlapping) categories like Trees, Hedeges, Grasses that help users finding a specific biol. plant species."""
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ plants = EReference(ordered=True, unique=True, containment=True, derived=False, upper=-1)
- def __init__(self, *, name=None, plants=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, name=None, plants=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
- if plants:
- self.plants.extend(plants)
+ if plants:
+ self.plants.extend(plants)
class IrrigationSchedule(EObject, metaclass=MetaEClass):
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- def __init__(self, *, name=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, name=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
class Vegetation(EObject, metaclass=MetaEClass):
- """Plant life or total plant cover (as of an area)"""
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- thicknessOfSoil = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='20 cm')
- management = EAttribute(eType=Management, unique=True, derived=False,
- changeable=True, default_value=Management.NA)
- airGap = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='0.0 cm')
- soil = EReference(ordered=True, unique=True, containment=False, derived=False)
- plants = EReference(ordered=True, unique=True, containment=True, derived=False, upper=-1)
+ """Plant life or total plant cover (as of an area)"""
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ thicknessOfSoil = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='20 cm')
+ management = EAttribute(eType=Management, unique=True, derived=False,
+ changeable=True, default_value=Management.NA)
+ airGap = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='0.0 cm')
+ soil = EReference(ordered=True, unique=True, containment=False, derived=False)
+ plants = EReference(ordered=True, unique=True, containment=True, derived=False, upper=-1)
- def __init__(self, *, name=None, thicknessOfSoil=None, soil=None, plants=None, management=None, airGap=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, name=None, thicknessOfSoil=None, soil=None, plants=None, management=None, airGap=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
- if thicknessOfSoil is not None:
- self.thicknessOfSoil = thicknessOfSoil
+ if thicknessOfSoil is not None:
+ self.thicknessOfSoil = thicknessOfSoil
- if management is not None:
- self.management = management
+ if management is not None:
+ self.management = management
- if airGap is not None:
- self.airGap = airGap
+ if airGap is not None:
+ self.airGap = airGap
- if soil is not None:
- self.soil = soil
+ if soil is not None:
+ self.soil = soil
- if plants:
- self.plants.extend(plants)
+ if plants:
+ self.plants.extend(plants)
class VegetationCategory(EObject, metaclass=MetaEClass):
- """Excluding (that is non-overlapping) categories to help users finding a specific vegetation template."""
- name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
- vegetationTemplates = EReference(ordered=True, unique=True,
- containment=True, derived=False, upper=-1)
+ """Excluding (that is non-overlapping) categories to help users finding a specific vegetation template."""
+ name = EAttribute(eType=EString, unique=True, derived=False, changeable=True)
+ vegetationTemplates = EReference(ordered=True, unique=True,
+ containment=True, derived=False, upper=-1)
- def __init__(self, *, vegetationTemplates=None, name=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, vegetationTemplates=None, name=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if name is not None:
- self.name = name
+ if name is not None:
+ self.name = name
- if vegetationTemplates:
- self.vegetationTemplates.extend(vegetationTemplates)
+ if vegetationTemplates:
+ self.vegetationTemplates.extend(vegetationTemplates)
class PlantPercentage(EObject, metaclass=MetaEClass):
- percentage = EAttribute(eType=EString, unique=True, derived=False,
- changeable=True, default_value='100')
- plant = EReference(ordered=True, unique=True, containment=False, derived=False)
+ percentage = EAttribute(eType=EString, unique=True, derived=False,
+ changeable=True, default_value='100')
+ plant = EReference(ordered=True, unique=True, containment=False, derived=False)
- def __init__(self, *, percentage=None, plant=None):
- # if kwargs:
- # raise AttributeError('unexpected arguments: {}'.format(kwargs))
+ def __init__(self, *, percentage=None, plant=None):
+ # if kwargs:
+ # raise AttributeError('unexpected arguments: {}'.format(kwargs))
- super().__init__()
+ super().__init__()
- if percentage is not None:
- self.percentage = percentage
+ if percentage is not None:
+ self.percentage = percentage
- if plant is not None:
- self.plant = plant
+ if plant is not None:
+ self.plant = plant
diff --git a/hub/catalog_factories/greenery/greenery_catalog.py b/hub/catalog_factories/greenery/greenery_catalog.py
index c9d157c2..a7c7f4aa 100644
--- a/hub/catalog_factories/greenery/greenery_catalog.py
+++ b/hub/catalog_factories/greenery/greenery_catalog.py
@@ -45,7 +45,7 @@ class GreeneryCatalog(Catalog):
if plant.name == plant_percentage.plant.name:
plant_category = plant.category
break
- plant_percentages.append(libs_pp(plant_percentage.percentage,plant_category, plant_percentage.plant))
+ plant_percentages.append(libs_pp(plant_percentage.percentage, plant_category, plant_percentage.plant))
vegetations.append(libs_vegetation(name, vegetation, plant_percentages))
plants = []
for plant_category in catalog_data.plantCategories:
diff --git a/hub/catalog_factories/greenery_catalog_factory.py b/hub/catalog_factories/greenery_catalog_factory.py
index 80640918..467eb1bc 100644
--- a/hub/catalog_factories/greenery_catalog_factory.py
+++ b/hub/catalog_factories/greenery_catalog_factory.py
@@ -7,9 +7,9 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
from pathlib import Path
from typing import TypeVar
+
from hub.catalog_factories.greenery.greenery_catalog import GreeneryCatalog
-from hub.hub_logger import logger
-from hub.helpers.utils import validate_import_export_type
+
Catalog = TypeVar('Catalog')
@@ -17,15 +17,10 @@ class GreeneryCatalogFactory:
"""
GreeneryCatalogFactory class
"""
- def __init__(self, file_type, base_path=None):
+ def __init__(self, handler, base_path=None):
if base_path is None:
- base_path = Path(Path(__file__).parent.parent / 'data/greenery')
- self._catalog_type = '_' + file_type.lower()
- class_funcs = validate_import_export_type(GreeneryCatalogFactory)
- if self._catalog_type not in class_funcs:
- err_msg = f"Wrong import type. Valid functions include {class_funcs}"
- logger.error(err_msg)
- raise Exception(err_msg)
+ base_path = (Path(__file__).parent.parent / 'data/greenery').resolve()
+ self._handler = '_' + handler.lower()
self._path = base_path
@property
@@ -42,4 +37,4 @@ class GreeneryCatalogFactory:
Enrich the city given to the class using the class given handler
:return: Catalog
"""
- return getattr(self, self._catalog_type, lambda: None)
+ return getattr(self, self._handler, lambda: None)
diff --git a/hub/catalog_factories/usage/__init__.py b/hub/catalog_factories/usage/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/catalog_factories/usage/comnet_catalog.py b/hub/catalog_factories/usage/comnet_catalog.py
index 7c226722..27fefb6e 100644
--- a/hub/catalog_factories/usage/comnet_catalog.py
+++ b/hub/catalog_factories/usage/comnet_catalog.py
@@ -4,6 +4,7 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
+import io
from typing import Dict
import pandas as pd
@@ -129,35 +130,39 @@ class ComnetCatalog(Catalog):
for usage_name in comnet_usages:
if usage_name == 'C-13 Data Center':
continue
- _extracted_data = pd.read_excel(self._comnet_schedules_path, sheet_name=comnet_usages[usage_name],
- skiprows=[0, 1, 2, 3], nrows=39, usecols="A:AA")
- _schedules = {}
- for row in range(0, 39, 3):
- _schedule_values = {}
- schedule_name = _extracted_data.loc[row:row, 'Description'].item()
- schedule_data_type = comnet_data_types[_extracted_data.loc[row:row, 'Type'].item()]
- for day in comnet_days:
- # Monday to Friday
- start = row
- end = row + 1
- if day == cte.SATURDAY:
- start = start + 1
- end = end + 1
- elif day == cte.SUNDAY or day == cte.HOLIDAY:
- start = start + 2
- end = end + 2
- _schedule_values[day] = _extracted_data.iloc[start:end, 3:27].to_numpy().tolist()[0]
- _schedule = []
- for day in _schedule_values:
- if schedule_name == 'ClgSetPt' or schedule_name == 'HtgSetPt' or schedule_name == 'WtrHtrSetPt':
- # to celsius
- if 'n.a.' in _schedule_values[day]:
- _schedule_values[day] = None
- else:
- _schedule_values[day] = [(float(value)-32)*5/9 for value in _schedule_values[day]]
- _schedule.append(Schedule(schedule_name, _schedule_values[day], schedule_data_type, cte.HOUR, cte.DAY, [day]))
- _schedules[schedule_name] = _schedule
- dictionary[usage_name] = _schedules
+ with open(self._comnet_schedules_path, 'rb') as xls:
+ _extracted_data = pd.read_excel(
+ io.BytesIO(xls.read()),
+ sheet_name=comnet_usages[usage_name],
+ skiprows=[0, 1, 2, 3], nrows=39, usecols="A:AA"
+ )
+ _schedules = {}
+ for row in range(0, 39, 3):
+ _schedule_values = {}
+ schedule_name = _extracted_data.loc[row:row, 'Description'].item()
+ schedule_data_type = comnet_data_types[_extracted_data.loc[row:row, 'Type'].item()]
+ for day in comnet_days:
+ # Monday to Friday
+ start = row
+ end = row + 1
+ if day == cte.SATURDAY:
+ start = start + 1
+ end = end + 1
+ elif day in (cte.SUNDAY, cte.HOLIDAY):
+ start = start + 2
+ end = end + 2
+ _schedule_values[day] = _extracted_data.iloc[start:end, 3:27].to_numpy().tolist()[0]
+ _schedule = []
+ for day in _schedule_values:
+ if schedule_name in ('ClgSetPt', 'HtgSetPt', 'WtrHtrSetPt'):
+ # to celsius
+ if 'n.a.' in _schedule_values[day]:
+ _schedule_values[day] = None
+ else:
+ _schedule_values[day] = [(float(value)-32)*5/9 for value in _schedule_values[day]]
+ _schedule.append(Schedule(schedule_name, _schedule_values[day], schedule_data_type, cte.HOUR, cte.DAY, [day]))
+ _schedules[schedule_name] = _schedule
+ dictionary[usage_name] = _schedules
return dictionary
def _read_archetype_file(self) -> Dict:
@@ -166,9 +171,13 @@ class ComnetCatalog(Catalog):
:return : Dict
"""
number_usage_types = 33
- xl_file = pd.ExcelFile(self._comnet_archetypes_path)
- file_data = pd.read_excel(xl_file, sheet_name="Modeling Data", skiprows=[0, 1, 2, 24],
- nrows=number_usage_types, usecols="A:AB")
+ with open(self._comnet_archetypes_path, 'rb') as xls:
+ _extracted_data = pd.read_excel(
+ io.BytesIO(xls.read()),
+ sheet_name="Modeling Data",
+ skiprows=[0, 1, 2, 24],
+ nrows=number_usage_types, usecols="A:AB"
+ )
lighting_data = {}
plug_loads_data = {}
@@ -178,7 +187,7 @@ class ComnetCatalog(Catalog):
process_data = {}
schedules_key = {}
for j in range(0, number_usage_types-1):
- usage_parameters = file_data.iloc[j]
+ usage_parameters = _extracted_data.iloc[j]
usage_type = usage_parameters[0]
lighting_data[usage_type] = usage_parameters[1:6].values.tolist()
plug_loads_data[usage_type] = usage_parameters[8:13].values.tolist()
diff --git a/hub/catalog_factories/usage/nrcan_catalog.py b/hub/catalog_factories/usage/nrcan_catalog.py
index 246e05f3..0c717276 100644
--- a/hub/catalog_factories/usage/nrcan_catalog.py
+++ b/hub/catalog_factories/usage/nrcan_catalog.py
@@ -94,8 +94,7 @@ class NrcanCatalog(Catalog):
# 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
+ 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,
@@ -132,8 +131,9 @@ class NrcanCatalog(Catalog):
# 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
+ 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
diff --git a/hub/catalog_factories/usage/usage_helper.py b/hub/catalog_factories/usage/usage_helper.py
index 57d58d84..26677505 100644
--- a/hub/catalog_factories/usage/usage_helper.py
+++ b/hub/catalog_factories/usage/usage_helper.py
@@ -4,10 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
-import sys
-import hub.helpers.constants as cte
from typing import Dict
+import hub.helpers.constants as cte
+
class UsageHelper:
"""
@@ -17,8 +17,8 @@ class UsageHelper:
'Lighting': cte.LIGHTING,
'Occupancy': cte.OCCUPANCY,
'Equipment': cte.APPLIANCES,
- 'Thermostat Setpoint Cooling': cte.COOLING_SET_POINT, # Compose 'Thermostat Setpoint' + 'Cooling'
- 'Thermostat Setpoint Heating': cte.HEATING_SET_POINT, # Compose 'Thermostat Setpoint' + 'Heating'
+ 'Thermostat Setpoint Cooling': cte.COOLING_SET_POINT,
+ 'Thermostat Setpoint Heating': cte.HEATING_SET_POINT,
'Fan': cte.HVAC_AVAILABILITY,
'Service Water Heating': cte.DOMESTIC_HOT_WATER
}
@@ -92,41 +92,49 @@ class UsageHelper:
@property
def nrcan_day_type_to_hub_days(self):
+ """
+ Get a dictionary to convert nrcan day types to hub day types
+ """
return self._nrcan_day_type_to_hub_days
@property
def nrcan_schedule_type_to_hub_schedule_type(self):
+ """
+ Get a dictionary to convert nrcan schedule types to hub schedule types
+ """
return self._nrcan_schedule_type_to_hub_schedule_type
@property
def nrcan_data_type_to_hub_data_type(self):
+ """
+ Get a dictionary to convert nrcan data types to hub data types
+ """
return self._nrcan_data_type_to_hub_data_type
@property
def nrcan_time_to_hub_time(self):
+ """
+ Get a dictionary to convert nrcan time to hub time
+ """
return self._nrcan_time_to_hub_time
@property
- def comnet_data_type_to_hub_data_type(self):
+ def comnet_data_type_to_hub_data_type(self) -> Dict:
+ """
+ Get a dictionary to convert comnet data types to hub data types
+ """
return self._comnet_data_type_to_hub_data_type
@property
def comnet_schedules_key_to_comnet_schedules(self) -> Dict:
+ """
+ Get a dictionary to convert hub schedules to comnet schedules
+ """
return self._comnet_schedules_key_to_comnet_schedules
@property
- def comnet_days(self):
+ def comnet_days(self) -> [str]:
+ """
+ Get the list of days used in comnet
+ """
return self._comnet_days
-
- @staticmethod
- def schedules_key(usage):
- """
- Get Comnet schedules key from the list found in the Comnet usage file
- :param usage: str
- :return: str
- """
- try:
- return UsageHelper._comnet_schedules_key_to_comnet_schedules[usage]
- except KeyError:
- sys.stderr.write('Error: Comnet keyword not found. An update of the Comnet files might have been '
- 'done changing the keywords.\n')
diff --git a/hub/catalog_factories/usage_catalog_factory.py b/hub/catalog_factories/usage_catalog_factory.py
index 26aa6631..9c46a475 100644
--- a/hub/catalog_factories/usage_catalog_factory.py
+++ b/hub/catalog_factories/usage_catalog_factory.py
@@ -4,26 +4,22 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
+import logging
from pathlib import Path
from typing import TypeVar
from hub.catalog_factories.usage.comnet_catalog import ComnetCatalog
from hub.catalog_factories.usage.nrcan_catalog import NrcanCatalog
-from hub.hub_logger import logger
from hub.helpers.utils import validate_import_export_type
Catalog = TypeVar('Catalog')
class UsageCatalogFactory:
- def __init__(self, file_type, base_path=None):
+ def __init__(self, handler, base_path=None):
if base_path is None:
base_path = Path(Path(__file__).parent.parent / 'data/usage')
- self._catalog_type = '_' + file_type.lower()
- class_funcs = validate_import_export_type(UsageCatalogFactory)
- if self._catalog_type not in class_funcs:
- err_msg = f"Wrong import type. Valid functions include {class_funcs}"
- logger.error(err_msg)
- raise Exception(err_msg)
+ self._catalog_type = '_' + handler.lower()
+ validate_import_export_type(UsageCatalogFactory, handler)
self._path = base_path
@property
diff --git a/hub/city_model_structure/__init__.py b/hub/city_model_structure/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/attributes/__init__.py b/hub/city_model_structure/attributes/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/attributes/plane.py b/hub/city_model_structure/attributes/plane.py
index 8dc0fa77..51cbbf0b 100644
--- a/hub/city_model_structure/attributes/plane.py
+++ b/hub/city_model_structure/attributes/plane.py
@@ -45,14 +45,13 @@ class Plane:
:return: (A, B, C, D)
"""
if self._equation is None:
-
a = self.normal[0]
b = self.normal[1]
c = self.normal[2]
- d = ((-1 * self.origin.coordinates[0]) * self.normal[0])
- d += ((-1 * self.origin.coordinates[1]) * self.normal[1])
- d += ((-1 * self.origin.coordinates[2]) * self.normal[2])
- self._equation = (a, b, c, d)
+ d = -1 * self.origin.coordinates[0] * self.normal[0]
+ d += -1 * self.origin.coordinates[1] * self.normal[1]
+ d += -1 * self.origin.coordinates[2] * self.normal[2]
+ self._equation = a, b, c, d
return self._equation
def distance_to_point(self, point):
diff --git a/hub/city_model_structure/attributes/point.py b/hub/city_model_structure/attributes/point.py
index 3aeb423c..9134bdbd 100644
--- a/hub/city_model_structure/attributes/point.py
+++ b/hub/city_model_structure/attributes/point.py
@@ -31,7 +31,7 @@ class Point:
:return: float
"""
power = 0
- for dimension in range(0, len(self.coordinates)):
+ for dimension in enumerate(self.coordinates):
power += math.pow(other_point.coordinates[dimension]-self.coordinates[dimension], 2)
distance = math.sqrt(power)
return distance
diff --git a/hub/city_model_structure/attributes/polygon.py b/hub/city_model_structure/attributes/polygon.py
index c98289be..5a2cf685 100644
--- a/hub/city_model_structure/attributes/polygon.py
+++ b/hub/city_model_structure/attributes/polygon.py
@@ -6,20 +6,21 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
from __future__ import annotations
+
+import logging
import math
import sys
from typing import List
-from hub.hub_logger import logger
+
import numpy as np
-from trimesh import Trimesh
-import trimesh.intersections
import trimesh.creation
import trimesh.geometry
+import trimesh.intersections
from shapely.geometry.polygon import Polygon as shapley_polygon
+from trimesh import Trimesh
from hub.city_model_structure.attributes.plane import Plane
from hub.city_model_structure.attributes.point import Point
-import hub.helpers.constants as cte
class Polygon:
@@ -69,44 +70,6 @@ class Polygon:
"""
return self._coordinates
- def contains_point(self, point):
- """
- Determines if the given point is contained by the current polygon
- :return: boolean
- """
- # fixme: This method doesn't seems to work.
- n = len(self.vertices)
- angle_sum = 0
- for i in range(0, n):
- vector_0 = self.vertices[i]
- vector_1 = self.vertices[(i+1) % n]
- # set to origin
- vector_0[0] = vector_0[0] - point.coordinates[0]
- vector_0[1] = vector_0[1] - point.coordinates[1]
- vector_0[2] = vector_0[2] - point.coordinates[2]
- vector_1[0] = vector_1[0] - point.coordinates[0]
- vector_1[1] = vector_1[1] - point.coordinates[1]
- vector_1[2] = vector_1[2] - point.coordinates[2]
- module = np.linalg.norm(vector_0) * np.linalg.norm(vector_1)
-
- scalar_product = np.dot(vector_0, vector_1)
- angle = np.pi/2
- if module != 0:
- angle = abs(np.arcsin(scalar_product / module))
- angle_sum += angle
- return abs(angle_sum - math.pi*2) < cte.EPSILON
-
- def contains_polygon(self, polygon):
- """
- Determines if the given polygon is contained by the current polygon
- :return: boolean
- """
-
- for point in polygon.points:
- if not self.contains_point(point):
- return False
- return True
-
@property
def points_list(self) -> np.ndarray:
"""
@@ -142,12 +105,12 @@ class Polygon:
if self._area is None:
self._area = 0
for triangle in self.triangles:
- ab = np.zeros(3)
- ac = np.zeros(3)
+ a_b = np.zeros(3)
+ a_c = np.zeros(3)
for i in range(0, 3):
- ab[i] = triangle.coordinates[1][i] - triangle.coordinates[0][i]
- ac[i] = triangle.coordinates[2][i] - triangle.coordinates[0][i]
- self._area += np.linalg.norm(np.cross(ab, ac)) / 2
+ a_b[i] = triangle.coordinates[1][i] - triangle.coordinates[0][i]
+ a_c[i] = triangle.coordinates[2][i] - triangle.coordinates[0][i]
+ self._area += np.linalg.norm(np.cross(a_b, a_c)) / 2
return self._area
@area.setter
@@ -217,7 +180,11 @@ class Polygon:
return -alpha
@staticmethod
- def triangle_mesh(vertices, normal):
+ def triangle_mesh(vertices, normal) -> Trimesh:
+ """
+ Get the triangulated mesh for the polygon
+ :return: Trimesh
+ """
min_x = 1e16
min_y = 1e16
min_z = 1e16
@@ -246,7 +213,8 @@ class Polygon:
polygon = shapley_polygon(coordinates)
try:
- vertices_2d, faces = trimesh.creation.triangulate_polygon(polygon, engine='triangle')
+ _, faces = trimesh.creation.triangulate_polygon(polygon, engine='triangle')
+
mesh = Trimesh(vertices=vertices, faces=faces)
# check orientation
@@ -262,18 +230,20 @@ class Polygon:
new_face.append(face[len(face)-i-1])
new_faces.append(new_face)
mesh = Trimesh(vertices=vertices, faces=new_faces)
-
return mesh
except ValueError:
- logger.error(f'Not able to triangulate polygon\n')
- sys.stderr.write(f'Not able to triangulate polygon\n')
+ logging.error('Not able to triangulate polygon\n')
_vertices = [[0, 0, 0], [0, 0, 1], [0, 1, 0]]
_faces = [[0, 1, 2]]
return Trimesh(vertices=_vertices, faces=_faces)
@property
def triangles(self) -> List[Polygon]:
+ """
+ Triangulate the polygon and return a list of triangular polygons
+ :return: [Polygon]
+ """
if self._triangles is None:
self._triangles = []
_mesh = self.triangle_mesh(self.coordinates, self.normal)
@@ -336,7 +306,7 @@ class Polygon:
def _reshape(self, triangles) -> Polygon:
edges_list = []
- for i in range(0, len(triangles)):
+ for i in enumerate(triangles):
for edge in triangles[i].edges:
if not self._edge_in_edges_list(edge, edges_list):
edges_list.append(edge)
@@ -421,13 +391,14 @@ class Polygon:
if len(points) != 3:
sub_polygons = polygon.triangles
# todo: I modified this! To be checked @Guille
- if len(sub_polygons) >= 1:
- for sub_polygon in sub_polygons:
- face = []
- points = sub_polygon.coordinates
- for point in points:
- face.append(self._position_of(point, face))
- self._faces.append(face)
+ if len(sub_polygons) < 1:
+ continue
+ for sub_polygon in sub_polygons:
+ face = []
+ points = sub_polygon.coordinates
+ for point in points:
+ face.append(self._position_of(point, face))
+ self._faces.append(face)
else:
for point in points:
face.append(self._position_of(point, face))
@@ -440,7 +411,7 @@ class Polygon:
:return: int
"""
vertices = self.vertices
- for i in range(len(vertices)):
+ for i in enumerate(vertices):
# ensure not duplicated vertex
power = 0
vertex2 = vertices[i]
diff --git a/hub/city_model_structure/attributes/polyhedron.py b/hub/city_model_structure/attributes/polyhedron.py
index 553f1e26..a01cd2b6 100644
--- a/hub/city_model_structure/attributes/polyhedron.py
+++ b/hub/city_model_structure/attributes/polyhedron.py
@@ -41,10 +41,10 @@ class Polyhedron:
:return: int
"""
vertices = self.vertices
- for i in range(len(vertices)):
+ for i, vertex in enumerate(vertices):
# ensure not duplicated vertex
power = 0
- vertex2 = vertices[i]
+ vertex2 = vertex
for dimension in range(0, 3):
power += math.pow(vertex2[dimension] - point[dimension], 2)
distance = math.sqrt(power)
@@ -92,14 +92,14 @@ class Polyhedron:
points = polygon.coordinates
if len(points) != 3:
sub_polygons = polygon.triangles
- # todo: I modified this! To be checked @Guille
- if len(sub_polygons) >= 1:
- for sub_polygon in sub_polygons:
- face = []
- points = sub_polygon.coordinates
- for point in points:
- face.append(self._position_of(point, face))
- self._faces.append(face)
+ if len(sub_polygons) < 1:
+ continue
+ for sub_polygon in sub_polygons:
+ face = []
+ points = sub_polygon.coordinates
+ for point in points:
+ face.append(self._position_of(point, face))
+ self._faces.append(face)
else:
for point in points:
face.append(self._position_of(point, face))
diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py
index 5e82efdf..0959a249 100644
--- a/hub/city_model_structure/building.py
+++ b/hub/city_model_structure/building.py
@@ -6,27 +6,31 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
-import sys
-from typing import List, Union
+import logging
+from typing import List, Union, TypeVar
+
import numpy as np
import pandas as pd
-from hub.hub_logger import logger
import hub.helpers.constants as cte
-import hub.helpers.peak_loads as pl
-from hub.city_model_structure.building_demand.surface import Surface
-from hub.city_model_structure.city_object import CityObject
+from hub.city_model_structure.attributes.polyhedron import Polyhedron
from hub.city_model_structure.building_demand.household import Household
from hub.city_model_structure.building_demand.internal_zone import InternalZone
-from hub.city_model_structure.attributes.polyhedron import Polyhedron
+from hub.city_model_structure.building_demand.surface import Surface
+from hub.city_model_structure.city_object import CityObject
+from hub.city_model_structure.energy_systems.energy_system import EnergySystem
+from hub.helpers.peak_loads import PeakLoads
+
+City = TypeVar('City')
class Building(CityObject):
"""
Building(CityObject) class
"""
- def __init__(self, name, surfaces, year_of_construction, function, terrains=None):
+ def __init__(self, name, surfaces, year_of_construction, function, terrains=None, city=None):
super().__init__(name, surfaces)
+ self._city = city
self._households = None
self._basement_heated = None
self._attic_heated = None
@@ -39,15 +43,22 @@ class Building(CityObject):
self._roof_type = None
self._internal_zones = None
self._shell = None
- self._alias = None
+ self._aliases = None
self._type = 'building'
- self._cold_water_temperature = dict()
- self._heating = dict()
- self._cooling = dict()
- self._lighting_electrical_demand = dict()
- self._appliances_electrical_demand = dict()
- self._domestic_hot_water_heat_demand = dict()
+ self._cold_water_temperature = {}
+ self._heating = {}
+ self._cooling = {}
+ self._lighting_electrical_demand = {}
+ self._appliances_electrical_demand = {}
+ self._domestic_hot_water_heat_demand = {}
+ self._heating_consumption = {}
+ self._cooling_consumption = {}
+ self._domestic_hot_water_consumption = {}
+ self._distribution_systems_electrical_consumption = {}
+ self._onsite_electrical_production = {}
self._eave_height = None
+ self._energy_systems = None
+ self._systems_archetype_name = None
self._grounds = []
self._roofs = []
self._walls = []
@@ -75,8 +86,8 @@ class Building(CityObject):
elif surface.type == cte.INTERIOR_SLAB:
self._interior_slabs.append(surface)
else:
- logger.error(f'Building {self.name} [alias {self.alias}] has an unexpected surface type {surface.type}.\n')
- sys.stderr.write(f'Building {self.name} [alias {self.alias}] has an unexpected surface type {surface.type}.\n')
+ error = f'Building {self.name} [{self.aliases}] has an unexpected surface type {surface.type}.\n'
+ logging.error(error)
@property
def shell(self) -> Polyhedron:
@@ -193,14 +204,6 @@ class Building(CityObject):
if value is not None:
self._basement_heated = int(value)
- @property
- def heated_volume(self):
- """
- Raises not implemented error
- """
- # todo: this need to be calculated based on the basement and attic heated values
- raise NotImplementedError
-
@property
def year_of_construction(self):
"""
@@ -258,6 +261,9 @@ class Building(CityObject):
Get building storeys number above ground
:return: None or int
"""
+ if self._storeys_above_ground is None:
+ if self.eave_height is not None and self.average_storey_height is not None:
+ self._storeys_above_ground = int(self.eave_height / self.average_storey_height)
return self._storeys_above_ground
@storeys_above_ground.setter
@@ -366,33 +372,38 @@ class Building(CityObject):
self._domestic_hot_water_heat_demand = value
@property
- def heating_peak_load(self) -> dict:
+ def heating_peak_load(self) -> Union[None, dict]:
"""
Get heating peak load in W
:return: dict{DataFrame(float)}
"""
results = {}
if cte.HOUR in self.heating:
- monthly_values = pl.peak_loads_from_hourly(self.heating[cte.HOUR][next(iter(self.heating[cte.HOUR]))].values)
+ monthly_values = PeakLoads().\
+ peak_loads_from_hourly(self.heating[cte.HOUR][next(iter(self.heating[cte.HOUR]))])
else:
- monthly_values = pl.heating_peak_loads_from_methodology(self)
- results[cte.MONTH] = pd.DataFrame(monthly_values, columns=['heating peak loads'])
- results[cte.YEAR] = pd.DataFrame([max(monthly_values)], columns=['heating peak loads'])
+ monthly_values = PeakLoads(self).heating_peak_loads_from_methodology
+ if monthly_values is None:
+ return None
+ results[cte.MONTH] = pd.DataFrame(monthly_values, columns=[cte.HEATING_PEAK_LOAD])
+ results[cte.YEAR] = pd.DataFrame([max(monthly_values)], columns=[cte.HEATING_PEAK_LOAD])
return results
@property
- def cooling_peak_load(self) -> dict:
+ def cooling_peak_load(self) -> Union[None, dict]:
"""
Get cooling peak load in W
:return: dict{DataFrame(float)}
"""
results = {}
if cte.HOUR in self.cooling:
- monthly_values = pl.peak_loads_from_hourly(self.cooling[cte.HOUR][next(iter(self.cooling[cte.HOUR]))])
+ monthly_values = PeakLoads().peak_loads_from_hourly(self.cooling[cte.HOUR][next(iter(self.cooling[cte.HOUR]))])
else:
- monthly_values = pl.cooling_peak_loads_from_methodology(self)
- results[cte.MONTH] = pd.DataFrame(monthly_values, columns=['cooling peak loads'])
- results[cte.YEAR] = pd.DataFrame([max(monthly_values)], columns=['cooling peak loads'])
+ monthly_values = PeakLoads(self).cooling_peak_loads_from_methodology
+ if monthly_values is None:
+ return None
+ results[cte.MONTH] = pd.DataFrame(monthly_values, columns=[cte.COOLING_PEAK_LOAD])
+ results[cte.YEAR] = pd.DataFrame([max(monthly_values)], columns=[cte.COOLING_PEAK_LOAD])
return results
@property
@@ -467,19 +478,38 @@ class Building(CityObject):
return False
@property
- def alias(self):
+ def aliases(self):
"""
Get the alias name for the building
:return: str
"""
- return self._alias
+ return self._aliases
- @alias.setter
- def alias(self, value):
+ def add_alias(self, value):
"""
- Set the alias name for the building
+ Add a new alias for the building
"""
- self._alias = value
+ if self._aliases is None:
+ self._aliases = [value]
+ else:
+ self._aliases.append(value)
+ if self.city is not None:
+ self.city.add_building_alias(self, value)
+
+ @property
+ def city(self) -> City:
+ """
+ Get the city containing the building
+ :return: City
+ """
+ return self._city
+
+ @city.setter
+ def city(self, value):
+ """
+ Set the city containing the building
+ """
+ self._city = value
@property
def usages_percentage(self):
@@ -488,6 +518,207 @@ class Building(CityObject):
"""
_usage = ''
for internal_zone in self.internal_zones:
+ if internal_zone.usages is None:
+ continue
for usage in internal_zone.usages:
_usage = f'{_usage}{usage.name}_{usage.percentage} '
return _usage.rstrip()
+
+ @property
+ def energy_systems(self) -> Union[None, List[EnergySystem]]:
+ """
+ Get list of energy systems installed to cover the building demands
+ :return: [EnergySystem]
+ """
+ return self._energy_systems
+
+ @energy_systems.setter
+ def energy_systems(self, value):
+ """
+ Set list of energy systems installed to cover the building demands
+ :param value: [EnergySystem]
+ """
+ self._energy_systems = value
+
+ @property
+ def energy_systems_archetype_name(self):
+ """
+ Get energy systems archetype name
+ :return: str
+ """
+ return self._systems_archetype_name
+
+ @energy_systems_archetype_name.setter
+ def energy_systems_archetype_name(self, value):
+ """
+ Set energy systems archetype name
+ :param value: str
+ """
+ self._systems_archetype_name = value
+
+ @property
+ def heating_consumption(self):
+ """
+ Get energy consumption for heating according to the heating system installed in Wh
+ return: dict
+ """
+ if len(self._heating_consumption) == 0:
+ for heating_demand_key in self.heating:
+ demand = self.heating[heating_demand_key][cte.INSEL_MEB]
+ consumption_type = cte.HEATING
+ final_energy_consumed = self._calculate_consumption(consumption_type, demand)
+ self._heating_consumption[heating_demand_key] = final_energy_consumed
+ return self._heating_consumption
+
+ @property
+ def cooling_consumption(self):
+ """
+ Get energy consumption for cooling according to the cooling system installed in Wh
+ return: dict
+ """
+ if len(self._cooling_consumption) == 0:
+ for cooling_demand_key in self.cooling:
+ demand = self.cooling[cooling_demand_key][cte.INSEL_MEB]
+ consumption_type = cte.COOLING
+ final_energy_consumed = self._calculate_consumption(consumption_type, demand)
+ self._cooling_consumption[cooling_demand_key] = final_energy_consumed
+ return self._cooling_consumption
+
+ @property
+ def domestic_hot_water_consumption(self):
+ """
+ Get energy consumption for domestic according to the domestic hot water system installed in Wh
+ return: dict
+ """
+ if len(self._domestic_hot_water_consumption) == 0:
+ for domestic_hot_water_demand_key in self.domestic_hot_water_heat_demand:
+ demand = self.domestic_hot_water_heat_demand[domestic_hot_water_demand_key][cte.INSEL_MEB]
+ consumption_type = cte.DOMESTIC_HOT_WATER
+ final_energy_consumed = self._calculate_consumption(consumption_type, demand)
+ self._domestic_hot_water_consumption[domestic_hot_water_demand_key] = final_energy_consumed
+ return self._domestic_hot_water_consumption
+
+ def _calculate_working_hours(self):
+ _working_hours = {}
+ for internal_zone in self.internal_zones:
+ for thermal_zone in internal_zone.thermal_zones:
+ _working_hours_per_thermal_zone = {}
+ for schedule in thermal_zone.thermal_control.hvac_availability_schedules:
+ _working_hours_per_schedule = [0] * len(schedule.values)
+ for i, value in enumerate(schedule.values):
+ if value > 0:
+ _working_hours_per_schedule[i] = 1
+ for day_type in schedule.day_types:
+ _working_hours_per_thermal_zone[day_type] = _working_hours_per_schedule
+ if len(_working_hours) == 0:
+ _working_hours = _working_hours_per_thermal_zone
+ else:
+ for key, item in _working_hours.items():
+ saved_values = _working_hours_per_thermal_zone[key]
+ for i, value in enumerate(item):
+ if saved_values[i] == 1:
+ value = 1
+ _total_hours = 0
+ for key in _working_hours:
+ _total_hours += _working_hours[key] * cte.DAYS_A_YEAR[key]
+ return _total_hours
+
+ @property
+ def distribution_systems_electrical_consumption(self):
+ """
+ Get total electricity consumption for distribution and emission systems in Wh
+ return: dict
+ """
+ if len(self._distribution_systems_electrical_consumption) != 0:
+ return self._distribution_systems_electrical_consumption
+ _peak_load = self.heating_peak_load[cte.YEAR]['heating peak loads'][0]
+ _peak_load_type = cte.HEATING
+ if _peak_load < self.cooling_peak_load[cte.YEAR]['cooling peak loads'][0]:
+ _peak_load = self.cooling_peak_load[cte.YEAR]['cooling peak loads'][0]
+ _peak_load_type = cte.COOLING
+
+ _consumption_fix_flow = 0
+ for energy_system in self.energy_systems:
+ emission_system = energy_system.emission_system.generic_emission_system
+ parasitic_energy_consumption = emission_system.parasitic_energy_consumption
+ distribution_system = energy_system.distribution_system.generic_distribution_system
+ consumption_variable_flow = distribution_system.distribution_consumption_variable_flow
+ for demand_type in energy_system.demand_types:
+ if demand_type.lower() == cte.HEATING:
+ if _peak_load_type == cte.HEATING:
+ _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow
+ for heating_demand_key in self.heating:
+ _consumption = [0]*len(self.heating)
+ _demand = self.heating[heating_demand_key][cte.INSEL_MEB]
+ for i in enumerate(_consumption):
+ _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i]
+ self._distribution_systems_electrical_consumption[heating_demand_key] = _consumption
+ if demand_type.lower() == cte.COOLING:
+ if _peak_load_type == cte.COOLING:
+ _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow
+ for demand_key in self.cooling:
+ _consumption = self._distribution_systems_electrical_consumption[demand_key]
+ _demand = self.cooling[demand_key][cte.INSEL_MEB]
+ for i in enumerate(_consumption):
+ _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i]
+ self._distribution_systems_electrical_consumption[demand_key] = _consumption
+
+ for key, item in self._distribution_systems_electrical_consumption.items():
+ for i in range(0, len(item)):
+ self._distribution_systems_electrical_consumption[key][i] += _peak_load * _consumption_fix_flow \
+ * self._calculate_working_hours()
+ return self._distribution_systems_electrical_consumption
+
+ def _calculate_consumption(self, consumption_type, demand):
+ # todo: modify when COP depends on the hour
+ coefficient_of_performance = 0
+ for energy_system in self.energy_systems:
+ for demand_type in energy_system.demand_types:
+ if demand_type.lower() == consumption_type.lower():
+ if consumption_type in (cte.HEATING, cte.DOMESTIC_HOT_WATER):
+ coefficient_of_performance = energy_system.generation_system.generic_generation_system.heat_efficiency
+ elif consumption_type == cte.COOLING:
+ coefficient_of_performance = energy_system.generation_system.generic_generation_system.cooling_efficiency
+ elif consumption_type == cte.ELECTRICITY:
+ coefficient_of_performance = \
+ energy_system.generation_system.generic_generation_system.electricity_efficiency
+ if coefficient_of_performance == 0:
+ values = [0]*len(demand)
+ final_energy_consumed = values
+ else:
+ final_energy_consumed = []
+ for demand_value in demand:
+ final_energy_consumed.append(demand_value / coefficient_of_performance)
+ return final_energy_consumed
+
+ @property
+ def onsite_electrical_production(self):
+ """
+ Get total electricity produced onsite in Wh
+ return: dict
+ """
+
+ # Add other systems whenever new ones appear
+ orientation_losses_factor = {cte.MONTH: {'north': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ 'east': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ 'south': [2.137931, 1.645503, 1.320946, 1.107817, 0.993213, 0.945175,
+ 0.967949, 1.065534, 1.24183, 1.486486, 1.918033, 2.210526],
+ 'west': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]},
+ cte.YEAR: {'north': [0],
+ 'east': [0],
+ 'south': [1.212544],
+ 'west': [0]}
+ }
+ for energy_system in self.energy_systems:
+ if energy_system.generation_system.generic_generation_system.type == cte.PHOTOVOLTAIC:
+ _efficiency = energy_system.generation_system.generic_generation_system.electricity_efficiency
+ self._onsite_electrical_production = {}
+ for _key in self.roofs[0].global_irradiance.keys():
+ _results = [0 for _ in range(0, len(self.roofs[0].global_irradiance[_key][cte.SRA]))]
+ for surface in self.roofs:
+ _results = [x + y * _efficiency * surface.perimeter_area
+ * surface.solar_collectors_area_reduction_factor * z
+ for x, y, z in zip(_results, surface.global_irradiance[_key][cte.SRA],
+ orientation_losses_factor[cte.MONTH]['south'])]
+ self._onsite_electrical_production[_key] = _results
+ return self._onsite_electrical_production
diff --git a/hub/city_model_structure/building_demand/__init__.py b/hub/city_model_structure/building_demand/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/building_demand/surface.py b/hub/city_model_structure/building_demand/surface.py
index a8df0330..3b0113aa 100644
--- a/hub/city_model_structure/building_demand/surface.py
+++ b/hub/city_model_structure/building_demand/surface.py
@@ -7,9 +7,11 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
"""
from __future__ import annotations
+
+import math
import uuid
-import numpy as np
from typing import List, Union
+import numpy as np
from hub.city_model_structure.attributes.polygon import Polygon
from hub.city_model_structure.attributes.plane import Plane
from hub.city_model_structure.attributes.point import Point
@@ -32,7 +34,7 @@ class Surface:
self._area = None
self._lower_corner = None
self._upper_corner = None
- self._global_irradiance = dict()
+ self._global_irradiance = {}
self._perimeter_polygon = perimeter_polygon
self._holes_polygons = holes_polygons
self._solid_polygon = solid_polygon
@@ -42,6 +44,7 @@ class Surface:
self._associated_thermal_boundaries = []
self._vegetation = None
self._percentage_shared = None
+ self._solar_collectors_area_reduction_factor = None
@property
def name(self):
@@ -134,7 +137,7 @@ class Surface:
@property
def azimuth(self):
"""
- Get surface azimuth in radians
+ Get surface azimuth in radians (north = 0)
:return: float
"""
if self._azimuth is None:
@@ -145,7 +148,7 @@ class Surface:
@property
def inclination(self):
"""
- Get surface inclination in radians
+ Get surface inclination in radians (zenith = 0, horizon = pi/2)
:return: float
"""
if self._inclination is None:
@@ -161,10 +164,12 @@ class Surface:
:return: str
"""
if self._type is None:
- grad = np.rad2deg(self.inclination)
- if grad >= 170:
+ inclination_cos = math.cos(self.inclination)
+ # 170 degrees
+ if inclination_cos <= -0.98:
self._type = 'Ground'
- elif 80 <= grad <= 100:
+ # between 80 and 100 degrees
+ elif abs(inclination_cos) <= 0.17:
self._type = 'Wall'
else:
self._type = 'Roof'
@@ -346,3 +351,36 @@ class Surface:
:param value: float
"""
self._percentage_shared = value
+
+ @property
+ def solar_collectors_area_reduction_factor(self):
+ """
+ Get factor area collector per surface area if set or calculate using Romero Rodriguez, L. et al (2017) model if not
+ :return: float
+ """
+ if self._solar_collectors_area_reduction_factor is None:
+ if self.type == cte.ROOF:
+ _protected_building_restriction = 1
+ # 10 degrees range
+ if abs(math.sin(self.inclination)) < 0.17:
+ # horizontal
+ _construction_restriction = 0.8
+ _separation_of_panels = 0.46
+ _shadow_between_panels = 0.7
+ else:
+ # tilted
+ _construction_restriction = 0.9
+ _separation_of_panels = 0.9
+ _shadow_between_panels = 1
+ self._solar_collectors_area_reduction_factor = (
+ _protected_building_restriction * _construction_restriction * _separation_of_panels * _shadow_between_panels
+ )
+ return self._solar_collectors_area_reduction_factor
+
+ @solar_collectors_area_reduction_factor.setter
+ def solar_collectors_area_reduction_factor(self, value):
+ """
+ Set factor area collector per surface area
+ :param value: float
+ """
+ self._solar_collectors_area_reduction_factor = value
diff --git a/hub/city_model_structure/building_demand/thermal_boundary.py b/hub/city_model_structure/building_demand/thermal_boundary.py
index eb11a158..f38049ee 100644
--- a/hub/city_model_structure/building_demand/thermal_boundary.py
+++ b/hub/city_model_structure/building_demand/thermal_boundary.py
@@ -226,7 +226,7 @@ class ThermalBoundary:
r_value += float(layer.thickness) / float(layer.material.conductivity)
self._u_value = 1.0/r_value
except TypeError:
- raise Exception('Constructions layers are not initialized') from TypeError
+ raise TypeError('Constructions layers are not initialized') from TypeError
return self._u_value
@u_value.setter
diff --git a/hub/city_model_structure/building_demand/thermal_zone.py b/hub/city_model_structure/building_demand/thermal_zone.py
index 7b823cc5..aad93286 100644
--- a/hub/city_model_structure/building_demand/thermal_zone.py
+++ b/hub/city_model_structure/building_demand/thermal_zone.py
@@ -8,8 +8,9 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
import uuid
import copy
-import numpy
from typing import List, Union, TypeVar
+import numpy
+
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.lighting import Lighting
@@ -59,7 +60,11 @@ class ThermalZone:
@property
def usages(self):
- # example 70-office_30-residential
+ """
+ Get the thermal zone usages including percentage with the format [percentage]-usage_[percentage]-usage...
+ Eg: 70-office_30-residential
+ :return: str
+ """
if self._usage_from_parent:
self._usages = copy.deepcopy(self._parent_internal_zone.usages)
else:
@@ -324,19 +329,19 @@ class ThermalZone:
_occupancy_reference = self.usages[0].occupancy
if _occupancy_reference.occupancy_schedules is not None:
_schedules = []
- for i_schedule in range(0, len(_occupancy_reference.occupancy_schedules)):
+ for schedule_index, schedule_value in enumerate(_occupancy_reference.occupancy_schedules):
schedule = Schedule()
- schedule.type = _occupancy_reference.occupancy_schedules[i_schedule].type
- schedule.day_types = _occupancy_reference.occupancy_schedules[i_schedule].day_types
- schedule.data_type = _occupancy_reference.occupancy_schedules[i_schedule].data_type
- schedule.time_step = _occupancy_reference.occupancy_schedules[i_schedule].time_step
- schedule.time_range = _occupancy_reference.occupancy_schedules[i_schedule].time_range
+ schedule.type = schedule_value.type
+ schedule.day_types = schedule_value.day_types
+ schedule.data_type = schedule_value.data_type
+ schedule.time_step = schedule_value.time_step
+ schedule.time_range = schedule_value.time_range
new_values = []
- for i_value in range(0, len(_occupancy_reference.occupancy_schedules[i_schedule].values)):
+ for i_value, _ in enumerate(schedule_value.values):
_new_value = 0
for usage in self.usages:
- _new_value += usage.percentage * usage.occupancy.occupancy_schedules[i_schedule].values[i_value]
+ _new_value += usage.percentage * usage.occupancy.occupancy_schedules[schedule_index].values[i_value]
new_values.append(_new_value)
schedule.values = new_values
_schedules.append(schedule)
@@ -363,12 +368,15 @@ class ThermalZone:
return None
_lighting_density += usage.percentage * usage.lighting.density
if usage.lighting.convective_fraction is not None:
- _convective_part += usage.percentage * usage.lighting.density \
- * usage.lighting.convective_fraction
- _radiative_part += usage.percentage * usage.lighting.density \
- * usage.lighting.radiative_fraction
- _latent_part += usage.percentage * usage.lighting.density \
- * usage.lighting.latent_fraction
+ _convective_part += (
+ usage.percentage * usage.lighting.density * usage.lighting.convective_fraction
+ )
+ _radiative_part += (
+ usage.percentage * usage.lighting.density * usage.lighting.radiative_fraction
+ )
+ _latent_part += (
+ usage.percentage * usage.lighting.density * usage.lighting.latent_fraction
+ )
self._lighting.density = _lighting_density
if _lighting_density > 0:
self._lighting.convective_fraction = _convective_part / _lighting_density
@@ -382,19 +390,19 @@ class ThermalZone:
_lighting_reference = self.usages[0].lighting
if _lighting_reference.schedules is not None:
_schedules = []
- for i_schedule in range(0, len(_lighting_reference.schedules)):
+ for schedule_index, schedule_value in enumerate(_lighting_reference.schedules):
schedule = Schedule()
- schedule.type = _lighting_reference.schedules[i_schedule].type
- schedule.day_types = _lighting_reference.schedules[i_schedule].day_types
- schedule.data_type = _lighting_reference.schedules[i_schedule].data_type
- schedule.time_step = _lighting_reference.schedules[i_schedule].time_step
- schedule.time_range = _lighting_reference.schedules[i_schedule].time_range
+ schedule.type = schedule_value.type
+ schedule.day_types = schedule_value.day_types
+ schedule.data_type = schedule_value.data_type
+ schedule.time_step = schedule_value.time_step
+ schedule.time_range = schedule_value.time_range
new_values = []
- for i_value in range(0, len(_lighting_reference.schedules[i_schedule].values)):
+ for i_value, _ in enumerate(schedule_value.values):
_new_value = 0
for usage in self.usages:
- _new_value += usage.percentage * usage.lighting.schedules[i_schedule].values[i_value]
+ _new_value += usage.percentage * usage.lighting.schedules[schedule_index].values[i_value]
new_values.append(_new_value)
schedule.values = new_values
_schedules.append(schedule)
@@ -421,12 +429,15 @@ class ThermalZone:
return None
_appliances_density += usage.percentage * usage.appliances.density
if usage.appliances.convective_fraction is not None:
- _convective_part += usage.percentage * usage.appliances.density \
- * usage.appliances.convective_fraction
- _radiative_part += usage.percentage * usage.appliances.density \
- * usage.appliances.radiative_fraction
- _latent_part += usage.percentage * usage.appliances.density \
- * usage.appliances.latent_fraction
+ _convective_part += (
+ usage.percentage * usage.appliances.density * usage.appliances.convective_fraction
+ )
+ _radiative_part += (
+ usage.percentage * usage.appliances.density * usage.appliances.radiative_fraction
+ )
+ _latent_part += (
+ usage.percentage * usage.appliances.density * usage.appliances.latent_fraction
+ )
self._appliances.density = _appliances_density
if _appliances_density > 0:
self._appliances.convective_fraction = _convective_part / _appliances_density
@@ -440,19 +451,19 @@ class ThermalZone:
_appliances_reference = self.usages[0].appliances
if _appliances_reference.schedules is not None:
_schedules = []
- for i_schedule in range(0, len(_appliances_reference.schedules)):
+ for schedule_index, schedule_value in enumerate(_appliances_reference.schedules):
schedule = Schedule()
- schedule.type = _appliances_reference.schedules[i_schedule].type
- schedule.day_types = _appliances_reference.schedules[i_schedule].day_types
- schedule.data_type = _appliances_reference.schedules[i_schedule].data_type
- schedule.time_step = _appliances_reference.schedules[i_schedule].time_step
- schedule.time_range = _appliances_reference.schedules[i_schedule].time_range
+ schedule.type = schedule_value.type
+ schedule.day_types = schedule_value.day_types
+ schedule.data_type = schedule_value.data_type
+ schedule.time_step = schedule_value.time_step
+ schedule.time_range = schedule_value.time_range
new_values = []
- for i_value in range(0, len(_appliances_reference.schedules[i_schedule].values)):
+ for i_value, _ in enumerate(schedule_value.values):
_new_value = 0
for usage in self.usages:
- _new_value += usage.percentage * usage.appliances.schedules[i_schedule].values[i_value]
+ _new_value += usage.percentage * usage.appliances.schedules[schedule_index].values[i_value]
new_values.append(_new_value)
schedule.values = new_values
_schedules.append(schedule)
@@ -486,12 +497,15 @@ class ThermalZone:
for usage in self.usages:
for internal_gain in usage.internal_gains:
_average_internal_gain += internal_gain.average_internal_gain * usage.percentage
- _convective_fraction += internal_gain.average_internal_gain * usage.percentage \
- * internal_gain.convective_fraction
- _radiative_fraction += internal_gain.average_internal_gain * usage.percentage \
- * internal_gain.radiative_fraction
- _latent_fraction += internal_gain.average_internal_gain * usage.percentage \
- * internal_gain.latent_fraction
+ _convective_fraction += (
+ internal_gain.average_internal_gain * usage.percentage * internal_gain.convective_fraction
+ )
+ _radiative_fraction += (
+ internal_gain.average_internal_gain * usage.percentage * internal_gain.radiative_fraction
+ )
+ _latent_fraction += (
+ internal_gain.average_internal_gain * usage.percentage * internal_gain.latent_fraction
+ )
for usage in self.usages:
for internal_gain in usage.internal_gains:
if internal_gain.schedules is None:
@@ -501,12 +515,12 @@ class ThermalZone:
_schedules_defined = False
break
for day, _schedule in enumerate(internal_gain.schedules):
- for v, value in enumerate(_schedule.values):
- values[v, day] += value * usage.percentage
+ for v_index, value in enumerate(_schedule.values):
+ values[v_index, day] += value * usage.percentage
if _schedules_defined:
_schedules = []
- for day in range(0, len(_days)):
+ for day, _ in enumerate(_days):
_schedule = copy.deepcopy(_base_schedule)
_schedule.day_types = [_days[day]]
_schedule.values = values[:day]
@@ -534,62 +548,62 @@ class ThermalZone:
if self.usages is None:
return None
- if self._thermal_control is None:
- self._thermal_control = ThermalControl()
- _mean_heating_set_point = 0
- _heating_set_back = 0
- _mean_cooling_set_point = 0
- for usage in self.usages:
- _mean_heating_set_point += usage.percentage * usage.thermal_control.mean_heating_set_point
- _heating_set_back += usage.percentage * usage.thermal_control.heating_set_back
- _mean_cooling_set_point += usage.percentage * usage.thermal_control.mean_cooling_set_point
- self._thermal_control.mean_heating_set_point = _mean_heating_set_point
- self._thermal_control.heating_set_back = _heating_set_back
- self._thermal_control.mean_cooling_set_point = _mean_cooling_set_point
+ if self._thermal_control is not None:
+ return self._thermal_control
+ self._thermal_control = ThermalControl()
+ _mean_heating_set_point = 0
+ _heating_set_back = 0
+ _mean_cooling_set_point = 0
+ for usage in self.usages:
+ _mean_heating_set_point += usage.percentage * usage.thermal_control.mean_heating_set_point
+ _heating_set_back += usage.percentage * usage.thermal_control.heating_set_back
+ _mean_cooling_set_point += usage.percentage * usage.thermal_control.mean_cooling_set_point
+ self._thermal_control.mean_heating_set_point = _mean_heating_set_point
+ self._thermal_control.heating_set_back = _heating_set_back
+ self._thermal_control.mean_cooling_set_point = _mean_cooling_set_point
- _thermal_control_reference = self.usages[0].thermal_control
- _types_reference = []
- if _thermal_control_reference.hvac_availability_schedules is not None:
- _types_reference.append([cte.HVAC_AVAILABILITY, _thermal_control_reference.hvac_availability_schedules])
- if _thermal_control_reference.heating_set_point_schedules is not None:
- _types_reference.append([cte.HEATING_SET_POINT, _thermal_control_reference.heating_set_point_schedules])
- if _thermal_control_reference.cooling_set_point_schedules is not None:
- _types_reference.append([cte.COOLING_SET_POINT, _thermal_control_reference.cooling_set_point_schedules])
+ _thermal_control_reference = self.usages[0].thermal_control
+ _types_reference = []
+ if _thermal_control_reference.hvac_availability_schedules is not None:
+ _types_reference.append([cte.HVAC_AVAILABILITY, _thermal_control_reference.hvac_availability_schedules])
+ if _thermal_control_reference.heating_set_point_schedules is not None:
+ _types_reference.append([cte.HEATING_SET_POINT, _thermal_control_reference.heating_set_point_schedules])
+ if _thermal_control_reference.cooling_set_point_schedules is not None:
+ _types_reference.append([cte.COOLING_SET_POINT, _thermal_control_reference.cooling_set_point_schedules])
- for i_type in range(0, len(_types_reference)):
- _schedules = []
- _schedule_type = _types_reference[i_type][1]
- for i_schedule in range(0, len(_schedule_type)):
- schedule = Schedule()
- schedule.type = _schedule_type[i_schedule].type
- schedule.day_types = _schedule_type[i_schedule].day_types
- schedule.data_type = _schedule_type[i_schedule].data_type
- schedule.time_step = _schedule_type[i_schedule].time_step
- schedule.time_range = _schedule_type[i_schedule].time_range
-
- new_values = []
- for i_value in range(0, len(_schedule_type[i_schedule].values)):
- _new_value = 0
- for usage in self.usages:
- if _types_reference[i_type][0] == cte.HVAC_AVAILABILITY:
- _new_value += usage.percentage * \
- usage.thermal_control.hvac_availability_schedules[i_schedule].values[i_value]
- elif _types_reference[i_type][0] == cte.HEATING_SET_POINT:
- _new_value += usage.percentage * \
- usage.thermal_control.heating_set_point_schedules[i_schedule].values[i_value]
- elif _types_reference[i_type][0] == cte.COOLING_SET_POINT:
- _new_value += usage.percentage * \
- usage.thermal_control.cooling_set_point_schedules[i_schedule].values[i_value]
- new_values.append(_new_value)
- schedule.values = new_values
- _schedules.append(schedule)
- if i_type == 0:
- self._thermal_control.hvac_availability_schedules = _schedules
- elif i_type == 1:
- self._thermal_control.heating_set_point_schedules = _schedules
- elif i_type == 2:
- self._thermal_control.cooling_set_point_schedules = _schedules
+ for i_type, _ in enumerate(_types_reference):
+ _schedules = []
+ _schedule_type = _types_reference[i_type][1]
+ for i_schedule, schedule_value in enumerate(_schedule_type):
+ schedule = Schedule()
+ schedule.type = schedule_value.type
+ schedule.day_types = schedule_value.day_types
+ schedule.data_type = schedule_value.data_type
+ schedule.time_step = schedule_value.time_step
+ schedule.time_range = schedule_value.time_range
+ new_values = []
+ for i_value, _ in enumerate(schedule_value.values):
+ _new_value = 0
+ for usage in self.usages:
+ if _types_reference[i_type][0] == cte.HVAC_AVAILABILITY:
+ _new_value += usage.percentage * \
+ usage.thermal_control.hvac_availability_schedules[i_schedule].values[i_value]
+ elif _types_reference[i_type][0] == cte.HEATING_SET_POINT:
+ _new_value += usage.percentage * \
+ usage.thermal_control.heating_set_point_schedules[i_schedule].values[i_value]
+ elif _types_reference[i_type][0] == cte.COOLING_SET_POINT:
+ _new_value += usage.percentage * \
+ usage.thermal_control.cooling_set_point_schedules[i_schedule].values[i_value]
+ new_values.append(_new_value)
+ schedule.values = new_values
+ _schedules.append(schedule)
+ if i_type == 0:
+ self._thermal_control.hvac_availability_schedules = _schedules
+ elif i_type == 1:
+ self._thermal_control.heating_set_point_schedules = _schedules
+ elif i_type == 2:
+ self._thermal_control.cooling_set_point_schedules = _schedules
return self._thermal_control
@property
@@ -613,19 +627,19 @@ class ThermalZone:
_domestic_hot_water_reference = self.usages[0].domestic_hot_water
if _domestic_hot_water_reference.schedules is not None:
_schedules = []
- for i_schedule in range(0, len(_domestic_hot_water_reference.schedules)):
+ for schedule_index, schedule_value in enumerate(_domestic_hot_water_reference.schedules):
schedule = Schedule()
- schedule.type = _domestic_hot_water_reference.schedules[i_schedule].type
- schedule.day_types = _domestic_hot_water_reference.schedules[i_schedule].day_types
- schedule.data_type = _domestic_hot_water_reference.schedules[i_schedule].data_type
- schedule.time_step = _domestic_hot_water_reference.schedules[i_schedule].time_step
- schedule.time_range = _domestic_hot_water_reference.schedules[i_schedule].time_range
+ schedule.type = schedule_value.type
+ schedule.day_types = schedule_value.day_types
+ schedule.data_type = schedule_value.data_type
+ schedule.time_step = schedule_value.time_step
+ schedule.time_range = schedule_value.time_range
new_values = []
- for i_value in range(0, len(_domestic_hot_water_reference.schedules[i_schedule].values)):
+ for i_value, _ in enumerate(schedule_value.values):
_new_value = 0
for usage in self.usages:
- _new_value += usage.percentage * usage.domestic_hot_water.schedules[i_schedule].values[i_value]
+ _new_value += usage.percentage * usage.domestic_hot_water.schedules[schedule_index].values[i_value]
new_values.append(_new_value)
schedule.values = new_values
_schedules.append(schedule)
diff --git a/hub/city_model_structure/city.py b/hub/city_model_structure/city.py
index e8a34595..3b00624f 100644
--- a/hub/city_model_structure/city.py
+++ b/hub/city_model_structure/city.py
@@ -8,28 +8,27 @@ Code contributors: Peter Yefi peteryefi@gmail.com
from __future__ import annotations
import bz2
-import sys
-import pickle
-import math
import copy
-import pyproj
-from typing import List, Union
-from pyproj import Transformer
+import logging
+import math
+import pickle
from pathlib import Path
+from typing import List, Union
+
+import pyproj
+from pandas import DataFrame
+from pyproj import Transformer
+
from hub.city_model_structure.building import Building
+from hub.city_model_structure.buildings_cluster import BuildingsCluster
from hub.city_model_structure.city_object import CityObject
from hub.city_model_structure.city_objects_cluster import CityObjectsCluster
-from hub.city_model_structure.buildings_cluster import BuildingsCluster
-from hub.city_model_structure.fuel import Fuel
+from hub.city_model_structure.energy_system import EnergySystem
from hub.city_model_structure.iot.station import Station
from hub.city_model_structure.level_of_detail import LevelOfDetail
-from hub.city_model_structure.machine import Machine
from hub.city_model_structure.parts_consisting_building import PartsConsistingBuilding
from hub.helpers.geometry_helper import GeometryHelper
from hub.helpers.location import Location
-from hub.city_model_structure.energy_system import EnergySystem
-from hub.city_model_structure.lca_material import LcaMaterial
-import pandas as pd
class City:
@@ -61,34 +60,20 @@ class City:
self._lca_materials = None
self._level_of_detail = LevelOfDetail()
self._city_objects_dictionary = {}
-
- @property
- def fuels(self) -> [Fuel]:
- return self._fuels
-
- @fuels.setter
- def fuels(self, value):
- self._fuels = value
-
- @property
- def machines(self) -> [Machine]:
- return self._machines
-
- @machines.setter
- def machines(self, value):
- self._machines = value
+ self._city_objects_alias_dictionary = {}
+ self._energy_systems_connection_table = None
+ self._generic_energy_systems = None
def _get_location(self) -> Location:
if self._location is None:
gps = pyproj.CRS('EPSG:4326') # LatLon with WGS84 datum used by GPS units and Google Earth
try:
- if self._srs_name in GeometryHelper.srs_transformations.keys():
+ if self._srs_name in GeometryHelper.srs_transformations:
self._srs_name = GeometryHelper.srs_transformations[self._srs_name]
input_reference = pyproj.CRS(self.srs_name) # Projected coordinate system from input data
- except pyproj.exceptions.CRSError:
- sys.stderr.write('Invalid projection reference system, please check the input data. '
- '(e.g. in CityGML files: srs_name)\n')
- sys.exit()
+ except pyproj.exceptions.CRSError as err:
+ logging.error('Invalid projection reference system, please check the input data.')
+ raise pyproj.exceptions.CRSError from err
transformer = Transformer.from_crs(input_reference, gps)
coordinates = transformer.transform(self.lower_corner[0], self.lower_corner[1])
self._location = GeometryHelper.get_location(coordinates[0], coordinates[1])
@@ -103,7 +88,11 @@ class City:
return self._get_location().country
@property
- def location(self):
+ def location(self) -> Location:
+ """
+ Get city location
+ :return: Location
+ """
return self._get_location().city
@property
@@ -204,6 +193,27 @@ class City:
return self.buildings[self._city_objects_dictionary[name]]
return None
+ def building_alias(self, alias) -> list[Building | list[Building]] | None:
+ """
+ Retrieve the city CityObject with the given alias alias
+ :alert: Building alias is not guaranteed to be unique
+ :param alias:str
+ :return: None or [CityObject]
+ """
+ if alias in self._city_objects_alias_dictionary:
+ return [self.buildings[i] for i in self._city_objects_alias_dictionary[alias]]
+ return None
+
+ def add_building_alias(self, building, alias):
+ """
+ Add an alias to the building
+ """
+ building_index = self._city_objects_dictionary[building.name]
+ if alias in self._city_objects_alias_dictionary:
+ self._city_objects_alias_dictionary[alias].append(building_index)
+ else:
+ self._city_objects_alias_dictionary[alias] = [building_index]
+
def add_city_object(self, new_city_object):
"""
Add a CityObject to the city
@@ -215,6 +225,12 @@ class City:
self._buildings = []
self._buildings.append(new_city_object)
self._city_objects_dictionary[new_city_object.name] = len(self._buildings) - 1
+ if new_city_object.aliases is not None:
+ for alias in new_city_object.aliases:
+ if alias in self._city_objects_alias_dictionary:
+ self._city_objects_alias_dictionary[alias].append(len(self._buildings) - 1)
+ else:
+ self._city_objects_alias_dictionary[alias] = [len(self._buildings) - 1]
elif new_city_object.type == 'energy_system':
if self._energy_systems is None:
self._energy_systems = []
@@ -230,15 +246,21 @@ class City:
"""
if city_object.type != 'building':
raise NotImplementedError(city_object.type)
- if self._buildings is None or self._buildings == []:
- sys.stderr.write('Warning: impossible to remove city_object, the city is empty\n')
+ if not self._buildings:
+ logging.warning('impossible to remove city_object, the city is empty\n')
else:
if city_object in self._buildings:
self._buildings.remove(city_object)
# regenerate hash map
self._city_objects_dictionary.clear()
- for i, city_object in enumerate(self._buildings):
- self._city_objects_dictionary[city_object.name] = i
+ self._city_objects_alias_dictionary.clear()
+ for i, _building in enumerate(self._buildings):
+ self._city_objects_dictionary[_building.name] = i
+ for alias in _building.aliases:
+ if alias in self._city_objects_alias_dictionary:
+ self._city_objects_alias_dictionary[alias].append(i)
+ else:
+ self._city_objects_alias_dictionary[alias] = [i]
@property
def srs_name(self) -> Union[None, str]:
@@ -282,8 +304,8 @@ class City:
:param city_filename: destination city filename
:return: None
"""
- with bz2.BZ2File(city_filename, 'wb') as f:
- pickle.dump(self, f)
+ with bz2.BZ2File(city_filename, 'wb') as file:
+ pickle.dump(self, file)
def region(self, center, radius) -> City:
"""
@@ -420,31 +442,6 @@ class City:
else:
raise NotImplementedError
- @property
- def lca_materials(self) -> Union[List[LcaMaterial], None]:
- """
- Get life cycle materials for the city
- :return: [LcaMaterial] or
- """
- return self._lca_materials
-
- @lca_materials.setter
- def lca_materials(self, value):
- """
- Set life cycle materials for the city
- """
- self._lca_materials = value
-
- def lca_material(self, lca_id) -> Union[LcaMaterial, None]:
- """
- Get the lca material matching the given Id
- :return: LcaMaterial or None
- """
- for lca_material in self.lca_materials:
- if str(lca_material.id) == str(lca_id):
- return lca_material
- return None
-
@property
def copy(self) -> City:
"""
@@ -453,34 +450,11 @@ class City:
return copy.deepcopy(self)
def merge(self, city) -> City:
- _merge_city = self.copy
- selected_city_object = None
- building = None
- # set initial minimum radiation to a higher number
- min_radiation = 1999999
- for city_object in city.city_objects:
- if city_object.type == 'building':
- building = city_object
- building_radiation = 0
- for surface in city_object.surfaces:
- radiation = surface.global_irradiance
- if 'year' not in radiation and 'month' not in radiation:
-
- continue
- elif "year" in radiation:
- building_radiation += radiation["year"].iloc[0]
- elif "month" in radiation and "year" not in radiation:
- surface.global_irradiance["year"] = pd.DataFrame({radiation["month"].sum()})
- building_radiation += radiation["year"].iloc[0]
- if building_radiation < min_radiation:
- min_radiation = building_radiation
- selected_city_object = city_object
- # merge the city object with the minimum radiation
- if selected_city_object is not None:
- _merge_city.add_city_object(selected_city_object)
- else:
- _merge_city.add_city_object(building)
- return _merge_city
+ """
+ Return a merged city combining the current city and the given one
+ :return: City
+ """
+ raise NotImplementedError('This method needs to be reimplemented')
@property
def level_of_detail(self) -> LevelOfDetail:
@@ -490,4 +464,36 @@ class City:
"""
return self._level_of_detail
+ @property
+ def energy_systems_connection_table(self) -> Union[None, DataFrame]:
+ """
+ Get energy systems connection table which includes at least two columns: energy_system_type and associated_building
+ and may also include dimensioned_energy_system and connection_building_to_dimensioned_energy_system
+ :return: DataFrame
+ """
+ return self._energy_systems_connection_table
+ @energy_systems_connection_table.setter
+ def energy_systems_connection_table(self, value):
+ """
+ Set energy systems connection table which includes at least two columns: energy_system_type and associated_building
+ and may also include dimensioned_energy_system and connection_building_to_dimensioned_energy_system
+ :param value: DataFrame
+ """
+ self._energy_systems_connection_table = value
+
+ @property
+ def generic_energy_systems(self) -> dict:
+ """
+ Get dictionary with generic energy systems installed in the city
+ :return: dict
+ """
+ return self._generic_energy_systems
+
+ @generic_energy_systems.setter
+ def generic_energy_systems(self, value):
+ """
+ Set dictionary with generic energy systems installed in the city
+ :return: dict
+ """
+ self._generic_energy_systems = value
diff --git a/hub/city_model_structure/city_object.py b/hub/city_model_structure/city_object.py
index 3e688c26..2c3a6be0 100644
--- a/hub/city_model_structure/city_object.py
+++ b/hub/city_model_structure/city_object.py
@@ -8,6 +8,7 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
from __future__ import annotations
from typing import List, Union
+from hub.city_model_structure.level_of_detail import LevelOfDetail
from hub.city_model_structure.iot.sensor import Sensor
from hub.city_model_structure.building_demand.surface import Surface
from hub.city_model_structure.attributes.polyhedron import Polyhedron
@@ -21,6 +22,7 @@ class CityObject:
"""
def __init__(self, name, surfaces):
self._name = name
+ self._level_of_detail = LevelOfDetail()
self._surfaces = surfaces
self._type = None
self._city_object_lower_corner = None
@@ -35,14 +37,22 @@ class CityObject:
self._max_z = ConfigurationHelper().min_coordinate
self._centroid = None
self._volume = None
- self._external_temperature = dict()
- self._ground_temperature = dict()
- self._global_horizontal = dict()
- self._diffuse = dict()
- self._beam = dict()
+ self._external_temperature = {}
+ self._ground_temperature = {}
+ self._global_horizontal = {}
+ self._diffuse = {}
+ self._beam = {}
self._sensors = []
self._neighbours = None
+ @property
+ def level_of_detail(self) -> LevelOfDetail:
+ """
+ Get level of detail of different aspects of the city: geometry, construction and usage
+ :return: LevelOfDetail
+ """
+ return self._level_of_detail
+
@property
def name(self):
"""
diff --git a/hub/city_model_structure/energy_systems/__init__.py b/hub/city_model_structure/energy_systems/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/energy_systems/control_system.py b/hub/city_model_structure/energy_systems/control_system.py
new file mode 100644
index 00000000..a1947511
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/control_system.py
@@ -0,0 +1,30 @@
+"""
+Energy control system module
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+
+class ControlSystem:
+ """
+ ControlSystem class
+ """
+ def __init__(self):
+ self._control_type = None
+
+ @property
+ def type(self):
+ """
+ Get control type
+ :return: string
+ """
+ return self._control_type
+
+ @type.setter
+ def type(self, value):
+ """
+ Set control type
+ :param value: string
+ """
+ self._control_type = value
diff --git a/hub/city_model_structure/energy_systems/distribution_system.py b/hub/city_model_structure/energy_systems/distribution_system.py
new file mode 100644
index 00000000..a5a1d770
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/distribution_system.py
@@ -0,0 +1,32 @@
+"""
+Energy distribution system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem
+
+
+class DistributionSystem:
+ """
+ DistributionSystem class
+ """
+ def __init__(self):
+ self._generic_distribution_system = None
+
+ @property
+ def generic_distribution_system(self) -> GenericDistributionSystem:
+ """
+ Get generic_distribution_system
+ :return: GenericDistributionSystem
+ """
+ return self._generic_distribution_system
+
+ @generic_distribution_system.setter
+ def generic_distribution_system(self, value):
+ """
+ Set associated generic_distribution_system
+ :param value: GenericDistributionSystem
+ """
+ self._generic_distribution_system = value
diff --git a/hub/city_model_structure/energy_systems/emission_system.py b/hub/city_model_structure/energy_systems/emission_system.py
new file mode 100644
index 00000000..a1fd9a30
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/emission_system.py
@@ -0,0 +1,32 @@
+"""
+Energy emission system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem
+
+
+class EmissionSystem:
+ """
+ EmissionSystem class
+ """
+ def __init__(self):
+ self._generic_emission_system = None
+
+ @property
+ def generic_emission_system(self) -> GenericEmissionSystem:
+ """
+ Get associated generic_emission_system
+ :return: GenericEmissionSystem
+ """
+ return self._generic_emission_system
+
+ @generic_emission_system.setter
+ def generic_emission_system(self, value):
+ """
+ Set associated
+ :param value: GenericEmissionSystem
+ """
+ self._generic_emission_system = value
diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py
new file mode 100644
index 00000000..399566d7
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/energy_system.py
@@ -0,0 +1,124 @@
+"""
+Energy system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import Union, List
+
+from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem
+from hub.city_model_structure.energy_systems.generation_system import GenerationSystem
+from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem
+from hub.city_model_structure.energy_systems.emission_system import EmissionSystem
+from hub.city_model_structure.energy_systems.control_system import ControlSystem
+from hub.city_model_structure.city_object import CityObject
+
+
+class EnergySystem:
+ """
+ EnergySystem class
+ """
+ def __init__(self):
+ self._generic_energy_system = None
+ self._generation_system = None
+ self._distribution_system = None
+ self._emission_system = None
+ self._connected_city_objects = None
+ self._control_system = None
+
+ @property
+ def generic_energy_system(self) -> GenericEnergySystem:
+ """
+ Get associated generic_energy_system
+ :return: GenericEnergySystem
+ """
+ return self._generic_energy_system
+
+ @generic_energy_system.setter
+ def generic_energy_system(self, value):
+ """
+ Set associated generic_energy_system
+ :param value: GenericEnergySystem
+ """
+ self._generic_energy_system = value
+
+ @property
+ def generation_system(self) -> GenerationSystem:
+ """
+ Get generation system
+ :return: GenerationSystem
+ """
+ return self._generation_system
+
+ @generation_system.setter
+ def generation_system(self, value):
+ """
+ Set generation system
+ :param value: GenerationSystem
+ """
+ self._generation_system = value
+
+ @property
+ def distribution_system(self) -> Union[None, DistributionSystem]:
+ """
+ Get distribution system
+ :return: DistributionSystem
+ """
+ return self._distribution_system
+
+ @distribution_system.setter
+ def distribution_system(self, value):
+ """
+ Set distribution system
+ :param value: DistributionSystem
+ """
+ self._distribution_system = value
+
+ @property
+ def emission_system(self) -> Union[None, EmissionSystem]:
+ """
+ Get emission system
+ :return: EmissionSystem
+ """
+ return self._emission_system
+
+ @emission_system.setter
+ def emission_system(self, value):
+ """
+ Set emission system
+ :param value: EmissionSystem
+ """
+ self._emission_system = value
+
+ @property
+ def connected_city_objects(self) -> Union[None, List[CityObject]]:
+ """
+ Get list of city objects that are connected to this energy system
+ :return: List[CityObject]
+ """
+ return self._connected_city_objects
+
+ @connected_city_objects.setter
+ def connected_city_objects(self, value):
+ """
+ Set list of city objects that are connected to this energy system
+ :param value: List[CityObject]
+ """
+ self._connected_city_objects = value
+
+ @property
+ def control_system(self) -> Union[None, ControlSystem]:
+ """
+ Get control system of the energy system
+ :return: ControlSystem
+ """
+ return self._control_system
+
+ @control_system.setter
+ def control_system(self, value):
+ """
+ Set control system of the energy system
+ :param value: ControlSystem
+ """
+ self._control_system = value
diff --git a/hub/city_model_structure/energy_systems/generation_system.py b/hub/city_model_structure/energy_systems/generation_system.py
new file mode 100644
index 00000000..1561e370
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/generation_system.py
@@ -0,0 +1,120 @@
+"""
+Energy generation system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from __future__ import annotations
+from typing import Union
+
+from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem
+
+
+class GenerationSystem:
+ """
+ GenerationSystem class
+ """
+ def __init__(self):
+ self._heat_power = None
+ self._cooling_power = None
+ self._electricity_power = None
+ self._storage_capacity = None
+ self._generic_generation_system = None
+ self._auxiliary_equipment = None
+
+ @property
+ def generic_generation_system(self) -> GenericGenerationSystem:
+ """
+ Get associated generic_generation_system
+ :return: GenericGenerationSystem
+ """
+ return self._generic_generation_system
+
+ @generic_generation_system.setter
+ def generic_generation_system(self, value):
+ """
+ Set associated generic_generation_system
+ :param value: GenericGenerationSystem
+ """
+ self._generic_generation_system = value
+
+ @property
+ def heat_power(self):
+ """
+ Get heat_power in W
+ :return: float
+ """
+ return self._heat_power
+
+ @heat_power.setter
+ def heat_power(self, value):
+ """
+ Set heat_power in W
+ :param value: float
+ """
+ self._heat_power = value
+
+ @property
+ def cooling_power(self):
+ """
+ Get cooling_power in W
+ :return: float
+ """
+ return self._cooling_power
+
+ @cooling_power.setter
+ def cooling_power(self, value):
+ """
+ Set cooling_power in W
+ :param value: float
+ """
+ self._cooling_power = value
+
+ @property
+ def electricity_power(self):
+ """
+ Get electricity_power in W
+ :return: float
+ """
+ return self._electricity_power
+
+ @electricity_power.setter
+ def electricity_power(self, value):
+ """
+ Set electricity_power in W
+ :param value: float
+ """
+ self._electricity_power = value
+
+ @property
+ def storage_capacity(self):
+ """
+ Get storage_capacity in J
+ :return: float
+ """
+ return self._storage_capacity
+
+ @storage_capacity.setter
+ def storage_capacity(self, value):
+ """
+ Set storage_capacity in J
+ :param value: float
+ """
+ self._storage_capacity = value
+
+ @property
+ def auxiliary_equipment(self) -> Union[None, GenerationSystem]:
+ """
+ Get auxiliary_equipment
+ :return: GenerationSystem
+ """
+ return self._auxiliary_equipment
+
+ @auxiliary_equipment.setter
+ def auxiliary_equipment(self, value):
+ """
+ Set auxiliary_equipment
+ :param value: GenerationSystem
+ """
+ self._auxiliary_equipment = value
diff --git a/hub/city_model_structure/energy_systems/generic_distribution_system.py b/hub/city_model_structure/energy_systems/generic_distribution_system.py
new file mode 100644
index 00000000..1db721d1
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/generic_distribution_system.py
@@ -0,0 +1,100 @@
+"""
+Generic energy distribution system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+
+class GenericDistributionSystem:
+ """
+ GenericDistributionSystem class
+ """
+ def __init__(self):
+ self._type = None
+ self._supply_temperature = None
+ self._distribution_consumption_fix_flow = None
+ self._distribution_consumption_variable_flow = None
+ self._heat_losses = None
+
+ @property
+ def type(self):
+ """
+ Get type from [air, water, refrigerant]
+ :return: string
+ """
+ return self._type
+
+ @type.setter
+ def type(self, value):
+ """
+ Set type from [air, water, refrigerant]
+ :param value: string
+ """
+ self._type = value
+
+ @property
+ def supply_temperature(self):
+ """
+ Get supply_temperature in degree Celsius
+ :return: float
+ """
+ return self._supply_temperature
+
+ @supply_temperature.setter
+ def supply_temperature(self, value):
+ """
+ Set supply_temperature in degree Celsius
+ :param value: float
+ """
+ self._supply_temperature = value
+
+ @property
+ def distribution_consumption_fix_flow(self):
+ """
+ Get distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W)
+ :return: float
+ """
+ return self._distribution_consumption_fix_flow
+
+ @distribution_consumption_fix_flow.setter
+ def distribution_consumption_fix_flow(self, value):
+ """
+ Set distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W)
+ :return: float
+ """
+ self._distribution_consumption_fix_flow = value
+
+ @property
+ def distribution_consumption_variable_flow(self):
+ """
+ Get distribution_consumption if the pump or fan work at variable mass or volume flow in ratio
+ over energy produced (Wh/Wh)
+ :return: float
+ """
+ return self._distribution_consumption_variable_flow
+
+ @distribution_consumption_variable_flow.setter
+ def distribution_consumption_variable_flow(self, value):
+ """
+ Set distribution_consumption if the pump or fan work at variable mass or volume flow in ratio
+ over energy produced (Wh/Wh)
+ :return: float
+ """
+ self._distribution_consumption_variable_flow = value
+
+ @property
+ def heat_losses(self):
+ """
+ Get heat_losses in ratio over energy produced
+ :return: float
+ """
+ return self._heat_losses
+
+ @heat_losses.setter
+ def heat_losses(self, value):
+ """
+ Set heat_losses in ratio over energy produced
+ :param value: float
+ """
+ self._heat_losses = value
diff --git a/hub/city_model_structure/energy_systems/generic_emission_system.py b/hub/city_model_structure/energy_systems/generic_emission_system.py
new file mode 100644
index 00000000..afc6b1e0
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/generic_emission_system.py
@@ -0,0 +1,30 @@
+"""
+Generic energy emission system module
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+
+class GenericEmissionSystem:
+ """
+ GenericEmissionSystem class
+ """
+ def __init__(self):
+ self._parasitic_energy_consumption = None
+
+ @property
+ def parasitic_energy_consumption(self):
+ """
+ Get parasitic_energy_consumption in ratio (W/W)
+ :return: float
+ """
+ return self._parasitic_energy_consumption
+
+ @parasitic_energy_consumption.setter
+ def parasitic_energy_consumption(self, value):
+ """
+ Set parasitic_energy_consumption in ratio (W/W)
+ :param value: float
+ """
+ self._parasitic_energy_consumption = value
diff --git a/hub/city_model_structure/energy_systems/generic_energy_system.py b/hub/city_model_structure/energy_systems/generic_energy_system.py
new file mode 100644
index 00000000..ac5d9b62
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/generic_energy_system.py
@@ -0,0 +1,105 @@
+"""
+Generic energy system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from typing import Union
+
+from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem
+from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem
+from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem
+
+
+class GenericEnergySystem:
+ """
+ GenericEnergySystem class
+ """
+ def __init__(self):
+ self._name = None
+ self._demand_types = None
+ self._generation_system = None
+ self._distribution_system = None
+ self._emission_system = None
+ self._connected_city_objects = None
+
+ @property
+ def name(self):
+ """
+ Get energy system name
+ :return: str
+ """
+ return self._name
+
+ @name.setter
+ def name(self, value):
+ """
+ Set energy system name
+ :param value:
+ """
+ self._name = value
+
+ @property
+ def demand_types(self):
+ """
+ Get demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity]
+ :return: [string]
+ """
+ return self._demand_types
+
+ @demand_types.setter
+ def demand_types(self, value):
+ """
+ Set demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity]
+ :param value: [string]
+ """
+ self._demand_types = value
+
+ @property
+ def generation_system(self) -> GenericGenerationSystem:
+ """
+ Get generation system
+ :return: GenerationSystem
+ """
+ return self._generation_system
+
+ @generation_system.setter
+ def generation_system(self, value):
+ """
+ Set generation system
+ :return: GenerationSystem
+ """
+ self._generation_system = value
+
+ @property
+ def distribution_system(self) -> Union[None, GenericDistributionSystem]:
+ """
+ Get distribution system
+ :return: DistributionSystem
+ """
+ return self._distribution_system
+
+ @distribution_system.setter
+ def distribution_system(self, value):
+ """
+ Set distribution system
+ :param value: DistributionSystem
+ """
+ self._distribution_system = value
+
+ @property
+ def emission_system(self) -> Union[None, GenericEmissionSystem]:
+ """
+ Get emission system
+ :return: EmissionSystem
+ """
+ return self._emission_system
+
+ @emission_system.setter
+ def emission_system(self, value):
+ """
+ Set emission system
+ :param value: EmissionSystem
+ """
+ self._emission_system = value
diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py
new file mode 100644
index 00000000..28094571
--- /dev/null
+++ b/hub/city_model_structure/energy_systems/generic_generation_system.py
@@ -0,0 +1,186 @@
+"""
+Generic energy generation system definition
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2023 Concordia CERC group
+Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+from __future__ import annotations
+from typing import Union
+
+
+class GenericGenerationSystem:
+ """
+ GenericGenerationSystem class
+ """
+ def __init__(self):
+ self._type = None
+ self._fuel_type = None
+ self._source_types = None
+ self._heat_efficiency = None
+ self._cooling_efficiency = None
+ self._electricity_efficiency = None
+ self._source_temperature = None
+ self._source_mass_flow = None
+ self._storage = None
+ self._auxiliary_equipment = None
+
+ @property
+ def type(self):
+ """
+ Get system type
+ :return: string
+ """
+ return self._type
+
+ @type.setter
+ def type(self, value):
+ """
+ Set system type
+ :param value: string
+ """
+ self._type = value
+
+ @property
+ def fuel_type(self):
+ """
+ Get fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal]
+ :return: string
+ """
+ return self._fuel_type
+
+ @fuel_type.setter
+ def fuel_type(self, value):
+ """
+ Set fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal]
+ :param value: string
+ """
+ self._fuel_type = value
+
+ @property
+ def source_types(self):
+ """
+ Get source_type from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity]
+ :return: [string]
+ """
+ return self._source_types
+
+ @source_types.setter
+ def source_types(self, value):
+ """
+ Set source_type from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity]
+ :param value: [string]
+ """
+ self._source_types = value
+
+ @property
+ def heat_efficiency(self):
+ """
+ Get heat_efficiency
+ :return: float
+ """
+ return self._heat_efficiency
+
+ @heat_efficiency.setter
+ def heat_efficiency(self, value):
+ """
+ Set heat_efficiency
+ :param value: float
+ """
+ self._heat_efficiency = value
+
+ @property
+ def cooling_efficiency(self):
+ """
+ Get cooling_efficiency
+ :return: float
+ """
+ return self._cooling_efficiency
+
+ @cooling_efficiency.setter
+ def cooling_efficiency(self, value):
+ """
+ Set cooling_efficiency
+ :param value: float
+ """
+ self._cooling_efficiency = value
+
+ @property
+ def electricity_efficiency(self):
+ """
+ Get electricity_efficiency
+ :return: float
+ """
+ return self._electricity_efficiency
+
+ @electricity_efficiency.setter
+ def electricity_efficiency(self, value):
+ """
+ Set electricity_efficiency
+ :param value: float
+ """
+ self._electricity_efficiency = value
+
+ @property
+ def source_temperature(self):
+ """
+ Get source_temperature in degree Celsius
+ :return: float
+ """
+ return self._source_temperature
+
+ @source_temperature.setter
+ def source_temperature(self, value):
+ """
+ Set source_temperature in degree Celsius
+ :param value: float
+ """
+ self._source_temperature = value
+
+ @property
+ def source_mass_flow(self):
+ """
+ Get source_mass_flow in kg/s
+ :return: float
+ """
+ return self._source_mass_flow
+
+ @source_mass_flow.setter
+ def source_mass_flow(self, value):
+ """
+ Set source_mass_flow in kg/s
+ :param value: float
+ """
+ self._source_mass_flow = value
+
+ @property
+ def storage(self):
+ """
+ Get boolean storage exists
+ :return: bool
+ """
+ return self._storage
+
+ @storage.setter
+ def storage(self, value):
+ """
+ Set boolean storage exists
+ :return: bool
+ """
+ self._storage = value
+
+ @property
+ def auxiliary_equipment(self) -> Union[None, GenericGenerationSystem]:
+ """
+ Get auxiliary_equipment
+ :return: GenerationSystem
+ """
+ return self._auxiliary_equipment
+
+ @auxiliary_equipment.setter
+ def auxiliary_equipment(self, value):
+ """
+ Set auxiliary_equipment
+ :return: GenerationSystem
+ """
+ self._auxiliary_equipment = value
diff --git a/hub/city_model_structure/energy_systems/heat_pump.py b/hub/city_model_structure/energy_systems/heat_pump.py
index 120155c5..067147fe 100644
--- a/hub/city_model_structure/energy_systems/heat_pump.py
+++ b/hub/city_model_structure/energy_systems/heat_pump.py
@@ -46,7 +46,7 @@ class HeatPump:
@hp_monthly_fossil_consumption.setter
def hp_monthly_fossil_consumption(self, value):
- if type(value) is Series:
+ if isinstance(value, Series):
self._hp_monthly_fossil_consumption = value
@property
@@ -60,5 +60,5 @@ class HeatPump:
@hp_monthly_electricity_demand.setter
def hp_monthly_electricity_demand(self, value):
- if type(value) == Series:
+ if isinstance(value, Series):
self._hp_monthly_electricity_demand = value
diff --git a/hub/city_model_structure/energy_systems/hvac_terminal_unit.py b/hub/city_model_structure/energy_systems/hvac_terminal_unit.py
index 7583bdc4..6bb22ef7 100644
--- a/hub/city_model_structure/energy_systems/hvac_terminal_unit.py
+++ b/hub/city_model_structure/energy_systems/hvac_terminal_unit.py
@@ -30,4 +30,3 @@ class HvacTerminalUnit:
"""
if value is not None:
self._type = str(value)
-
diff --git a/hub/city_model_structure/fuel.py b/hub/city_model_structure/fuel.py
deleted file mode 100644
index d3122a05..00000000
--- a/hub/city_model_structure/fuel.py
+++ /dev/null
@@ -1,45 +0,0 @@
-"""
-ConstructionFactory (before PhysicsFactory) retrieve the specific construction module for the given region
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-"""
-
-class Fuel:
- def __init__(self, fuel_id, name, carbon_emission_factor, unit):
- self._fuel_id = fuel_id
- self._name = name
- self._carbon_emission_factor = carbon_emission_factor
- self._unit = unit
-
- @property
- def id(self) -> int:
- """
- Get fuel id
- :return: int
- """
- return self._fuel_id
-
- @property
- def name(self) -> str:
- """
- Get fuel name
- :return: str
- """
- return self._name
-
- @property
- def carbon_emission_factor(self) -> float:
- """
- Get fuel carbon emission factor
- :return: float
- """
- return self._carbon_emission_factor
-
- @property
- def unit(self) -> str:
- """
- Get fuel units
- :return: str
- """
- return self._unit
diff --git a/hub/city_model_structure/greenery/__init__.py b/hub/city_model_structure/greenery/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/greenery/plant.py b/hub/city_model_structure/greenery/plant.py
index 1d37f4d4..e1510912 100644
--- a/hub/city_model_structure/greenery/plant.py
+++ b/hub/city_model_structure/greenery/plant.py
@@ -1,5 +1,5 @@
"""
-Plant class
+Plant module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
@@ -10,6 +10,9 @@ from hub.city_model_structure.greenery.soil import Soil
class Plant:
+ """
+ Plant class
+ """
def __init__(self, name, height, leaf_area_index, leaf_reflectivity, leaf_emissivity, minimal_stomatal_resistance,
co2_sequestration, grows_on_soils):
self._name = name
diff --git a/hub/city_model_structure/greenery/soil.py b/hub/city_model_structure/greenery/soil.py
index b938d0b2..818599c2 100644
--- a/hub/city_model_structure/greenery/soil.py
+++ b/hub/city_model_structure/greenery/soil.py
@@ -1,5 +1,5 @@
"""
-Soil class
+Soil module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
@@ -7,6 +7,9 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
class Soil:
+ """
+ Soil class
+ """
def __init__(self, name, roughness, dry_conductivity, dry_density, dry_specific_heat, thermal_absorptance,
solar_absorptance, visible_absorptance, saturation_volumetric_moisture_content,
residual_volumetric_moisture_content):
diff --git a/hub/city_model_structure/greenery/vegetation.py b/hub/city_model_structure/greenery/vegetation.py
index 9f044540..b7d93f0a 100644
--- a/hub/city_model_structure/greenery/vegetation.py
+++ b/hub/city_model_structure/greenery/vegetation.py
@@ -1,5 +1,5 @@
"""
-Vegetation class
+Vegetation module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
@@ -11,6 +11,9 @@ from hub.city_model_structure.greenery.plant import Plant
class Vegetation:
+ """
+ Vegetation class
+ """
def __init__(self, name, soil, soil_thickness, plants):
self._name = name
self._management = None
diff --git a/hub/city_model_structure/iot/__init__.py b/hub/city_model_structure/iot/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/iot/sensor_measure.py b/hub/city_model_structure/iot/sensor_measure.py
index 12ab5811..cca700ad 100644
--- a/hub/city_model_structure/iot/sensor_measure.py
+++ b/hub/city_model_structure/iot/sensor_measure.py
@@ -7,6 +7,9 @@ Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
class SensorMeasure:
+ """
+ Sensor measure class
+ """
def __init__(self, latitude, longitude, utc_timestamp, value):
self._latitude = latitude
self._longitude = longitude
diff --git a/hub/city_model_structure/iot/sensor_type.py b/hub/city_model_structure/iot/sensor_type.py
index a9477779..8aad2b55 100644
--- a/hub/city_model_structure/iot/sensor_type.py
+++ b/hub/city_model_structure/iot/sensor_type.py
@@ -9,6 +9,9 @@ from enum import Enum
class SensorType(Enum):
+ """
+ Sensor type enumeration
+ """
HUMIDITY = 0
TEMPERATURE = 1
CO2 = 2
diff --git a/hub/city_model_structure/iot/station.py b/hub/city_model_structure/iot/station.py
index 3ce6ee9c..32a9ee3b 100644
--- a/hub/city_model_structure/iot/station.py
+++ b/hub/city_model_structure/iot/station.py
@@ -1,5 +1,5 @@
"""
-Station
+Station module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
@@ -10,6 +10,9 @@ from hub.city_model_structure.iot.sensor import Sensor
class Station:
+ """
+ Station class
+ """
def __init__(self, station_id=None, _mobile=False):
self._id = station_id
self._mobile = _mobile
@@ -19,7 +22,7 @@ class Station:
def id(self):
"""
Get the station id a random uuid will be assigned if no ID was provided to the constructor
- :return: Id
+ :return: ID
"""
if self._id is None:
self._id = uuid.uuid4()
diff --git a/hub/city_model_structure/lca_material.py b/hub/city_model_structure/lca_material.py
deleted file mode 100644
index 935bc528..00000000
--- a/hub/city_model_structure/lca_material.py
+++ /dev/null
@@ -1,242 +0,0 @@
-"""
-LCA Material module
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder atiya.atiya@mail.concordia.ca
-"""
-
-from typing import Union
-
-class LcaMaterial:
- def __init__(self):
- self._id = None
- self._type = None
- self._name = None
- self._density = None
- self._density_unit = None
- self._embodied_carbon = None
- self._embodied_carbon_unit = None
- self._recycling_ratio = None
- self._company_recycling_ratio = None
- self._onsite_recycling_ratio = None
- self._landfilling_ratio = None
- self._cost = None
- self._cost_unit = None
-
- @property
- def id(self):
- """
- Get material id
- :return: int
- """
- return self._id
-
- @id.setter
- def id(self, value):
- """
- Set material id
- :param value: int
- """
- self._id = int(value)
-
- @property
- def type(self):
- """
- Get material type
- :return: str
- """
- return self._type
-
- @type.setter
- def type(self, value):
- """
- Set material type
- :param value: string
- """
- self._type = str(value)
-
- @property
- def name(self):
- """
- Get material name
- :return: str
- """
- return self._name
-
- @name.setter
- def name(self, value):
- """
- Set material name
- :param value: string
- """
- self._name = str(value)
-
- @property
- def density(self) -> Union[None, float]:
- """
- Get material density in kg/m3
- :return: None or float
- """
- return self._density
-
- @density.setter
- def density(self, value):
- """
- Set material density
- :param value: float
- """
- if value is not None:
- self._density = float(value)
-
- @property
- def density_unit(self) -> Union[None, str]:
- """
- Get material density unit
- :return: None or string
- """
- return self._density_unit
-
- @density_unit.setter
- def density_unit(self, value):
- """
- Set material density unit
- :param value: string
- """
- if value is not None:
- self._density_unit = str(value)
-
- @property
- def embodied_carbon(self) -> Union[None, float]:
- """
- Get material embodied carbon
- :return: None or float
- """
- return self._embodied_carbon
-
- @embodied_carbon.setter
- def embodied_carbon(self, value):
- """
- Set material embodied carbon
- :param value: float
- """
- if value is not None:
- self._embodied_carbon = float(value)
-
- @property
- def embodied_carbon_unit(self) -> Union[None, str]:
- """
- Get material embodied carbon unit
- :return: None or string
- """
- return self._embodied_carbon
-
- @embodied_carbon_unit.setter
- def embodied_carbon_unit(self, value):
- """
- Set material embodied carbon unit
- :param value: string
- """
- if value is not None:
- self._embodied_carbon_unit = str(value)
-
- @property
- def recycling_ratio(self) -> Union[None, float]:
- """
- Get material recycling ratio
- :return: None or float
- """
- return self._recycling_ratio
-
- @recycling_ratio.setter
- def recycling_ratio(self, value):
- """
- Set material recycling ratio
- :param value: float
- """
- if value is not None:
- self._recycling_ratio = float(value)
-
- @property
- def onsite_recycling_ratio(self) -> Union[None, float]:
- """
- Get material onsite recycling ratio
- :return: None or float
- """
- return self._onsite_recycling_ratio
-
- @onsite_recycling_ratio.setter
- def onsite_recycling_ratio(self, value):
- """
- Set material onsite recycling ratio
- :param value: float
- """
- if value is not None:
- self._onsite_recycling_ratio = float(value)
-
- @property
- def company_recycling_ratio(self) -> Union[None, float]:
- """
- Get material company recycling ratio
- :return: None or float
- """
- return self._company_recycling_ratio
-
- @company_recycling_ratio.setter
- def company_recycling_ratio(self, value):
- """
- Set material company recycling ratio
- :param value: float
- """
- if value is not None:
- self._company_recycling_ratio = float(value)
-
- @property
- def landfilling_ratio(self) -> Union[None, float]:
- """
- Get material landfilling ratio
- :return: None or float
- """
- return self._landfilling_ratio
-
- @landfilling_ratio.setter
- def landfilling_ratio(self, value):
- """
- Set material landfilling ratio
- :param value: float
- """
- if value is not None:
- self._landfilling_ratio = float(value)
-
- @property
- def cost(self) -> Union[None, float]:
- """
- Get material cost
- :return: None or float
- """
- return self._cost
-
- @cost.setter
- def cost(self, value):
- """
- Set material cost
- :param value: float
- """
- if value is not None:
- self._cost = float(value)
-
- @property
- def cost_unit(self) -> Union[None, str]:
- """
- Get material cost unit
- :return: None or string
- """
- return self._cost_unit
-
- @cost_unit.setter
- def cost_unit(self, value):
- """
- Set material cost unit
- :param value: string
- """
- if value is not None:
- self._cost_unit = float(value)
diff --git a/hub/city_model_structure/level_of_detail.py b/hub/city_model_structure/level_of_detail.py
index 2c8665b9..273c60a3 100644
--- a/hub/city_model_structure/level_of_detail.py
+++ b/hub/city_model_structure/level_of_detail.py
@@ -16,6 +16,7 @@ class LevelOfDetail:
self._usage = None
self._weather = None
self._surface_radiation = None
+ self._energy_systems = None
@property
def geometry(self):
@@ -75,7 +76,7 @@ class LevelOfDetail:
"""
Set the city minimal weather level of detail, 0 (yearly), 1 (monthly), 2 (hourly)
"""
- self._usage = value
+ self._weather = value
@property
def surface_radiation(self):
@@ -91,3 +92,18 @@ class LevelOfDetail:
Set the city minimal surface radiation level of detail, 0 (yearly), 1 (monthly), 2 (hourly)
"""
self._surface_radiation = value
+
+ @property
+ def energy_systems(self):
+ """
+ Get the city minimal energy systems level of detail, 1 or 2
+ :return: int
+ """
+ return self._energy_systems
+
+ @energy_systems.setter
+ def energy_systems(self, value):
+ """
+ Set the city minimal energy systems level of detail, 1 or 2
+ """
+ self._energy_systems = value
diff --git a/hub/city_model_structure/machine.py b/hub/city_model_structure/machine.py
deleted file mode 100644
index c285cf59..00000000
--- a/hub/city_model_structure/machine.py
+++ /dev/null
@@ -1,87 +0,0 @@
-"""
-LifeCycleAssessment retrieve the specific Life Cycle Assessment module for the given region
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-"""
-
-
-class Machine:
- """
- Machine class
- """
-
- def __init__(self, machine_id, name, work_efficiency, work_efficiency_unit, energy_consumption_rate,
- energy_consumption_unit, carbon_emission_factor, carbon_emission_unit):
- self._machine_id = machine_id
- self._name = name
- self._work_efficiency = work_efficiency
- self._work_efficiency_unit = work_efficiency_unit
- self._energy_consumption_rate = energy_consumption_rate
- self._energy_consumption_unit = energy_consumption_unit
- self._carbon_emission_factor = carbon_emission_factor
- self._carbon_emission_unit = carbon_emission_unit
-
- @property
- def id(self) -> int:
- """
- Get machine id
- :return: int
- """
- return self._machine_id
-
- @property
- def name(self) -> str:
- """
- Get machine name
- :return: str
- """
- return self._name
-
- @property
- def work_efficiency(self) -> float:
- """
- Get machine work efficiency
- :return: float
- """
- return self._work_efficiency
-
- @property
- def work_efficiency_unit(self) -> str:
- """
- Get machine work efficiency unit
- :return: str
- """
- return self._work_efficiency_unit
-
- @property
- def energy_consumption_rate(self) -> float:
- """
- Get energy consumption rate
- :return: float
- """
- return self._energy_consumption_rate
-
- @property
- def energy_consumption_unit(self) -> str:
- """
- Get energy consumption unit
- :return: str
- """
- return self._energy_consumption_unit
-
- @property
- def carbon_emission_factor(self) -> float:
- """
- Get carbon emission factor
- :return: float
- """
- return self._carbon_emission_factor
-
- @property
- def carbon_emission_unit(self) -> str:
- """
- Get carbon emission unit
- :return: str
- """
- return self._carbon_emission_unit
diff --git a/hub/city_model_structure/transport/__init__.py b/hub/city_model_structure/transport/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/hub/city_model_structure/vehicle.py b/hub/city_model_structure/vehicle.py
deleted file mode 100644
index 61f36e11..00000000
--- a/hub/city_model_structure/vehicle.py
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-LifeCycleAssessment retrieve the specific Life Cycle Assessment module for the given region
-SPDX - License - Identifier: LGPL - 3.0 - or -later
-Copyright © 2022 Concordia CERC group
-Project Coder Atiya atiya.atiya@mail.concordia.ca
-"""
-
-class Vehicle:
- """
- Vehicle class
- """
-
- def __init__(self, vehicle_id, name, fuel_consumption_rate, fuel_consumption_unit, carbon_emission_factor,
- carbon_emission_factor_unit):
- self._vehicle_id = vehicle_id
- self._name = name
- self._fuel_consumption_rate = fuel_consumption_rate
- self._fuel_consumption_unit = fuel_consumption_unit
- self._carbon_emission_factor = carbon_emission_factor
- self._carbon_emission_factor_unit = carbon_emission_factor_unit
-
- @property
- def id(self) -> int:
- """
- Get vehicle id
- :return: int
- """
- return self._vehicle_id
-
- @property
- def name(self) -> str:
- """
- Get vehicle name
- :return: str
- """
- return self._name
-
- @property
- def fuel_consumption_rate(self) -> float:
- """
- Get vehicle fuel consumption rate
- :return: float
- """
- return self._fuel_consumption_rate
-
- @property
- def fuel_consumption_unit(self) -> str:
- """
- Get fuel consumption unit
- :return: str
- """
- return self._fuel_consumption_unit
-
- @property
- def carbon_emission_factor(self) -> float:
- """
- Get vehicle carbon emission factor
- :return: float
- """
- return self._carbon_emission_factor
-
- @property
- def carbon_emission_factor_unit(self) -> str:
- """
- Get carbon emission units
- :return: str
- """
- return self._carbon_emission_factor_unit
diff --git a/hub/data/construction/nrcan_archetypes.json b/hub/data/construction/nrcan_archetypes.json
index 6b36328f..30b7d661 100644
--- a/hub/data/construction/nrcan_archetypes.json
+++ b/hub/data/construction/nrcan_archetypes.json
@@ -2,17 +2,17 @@
"archetypes": [
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -21,7 +21,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -31,32 +31,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -65,7 +65,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -75,32 +75,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -109,7 +109,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -119,32 +119,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -153,7 +153,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -163,32 +163,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -197,7 +197,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -207,32 +207,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -241,7 +241,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -251,32 +251,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -285,7 +2397,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -295,32 +2407,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -329,7 +2441,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -339,32 +2451,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -373,7 +2485,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -383,32 +2495,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -417,7 +2529,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -427,32 +2539,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -461,7 +2573,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -471,32 +2583,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "FullServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "0.0",
"east": "20.22",
@@ -505,7 +2617,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -515,16 +2627,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -536,7 +3176,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -580,7 +3220,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -624,7 +3264,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -668,7 +3308,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -712,7 +3352,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -756,7 +3396,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -800,7 +3440,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -844,7 +3484,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -888,7 +3528,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -932,7 +3572,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -976,7 +3616,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -1020,7 +3660,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -1064,7 +3704,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -1108,7 +3748,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -1152,7 +3792,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -1196,7 +3836,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -1240,7 +3880,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -1284,7 +3924,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -1322,17 +3962,17 @@
},
{
"function": "HighriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1341,7 +3981,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1351,32 +3991,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1385,7 +4025,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1395,32 +4035,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1429,7 +4069,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1439,32 +4079,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1473,7 +4113,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1483,32 +4123,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1517,7 +4157,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1527,32 +4167,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1561,7 +4201,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1571,32 +4211,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1605,7 +6357,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1615,32 +6367,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1649,7 +6401,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1659,32 +6411,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1693,7 +6445,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1703,32 +6455,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1737,7 +6489,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1747,32 +6499,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1781,7 +6533,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1791,32 +6543,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "HighriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "30.0",
"east": "29.62",
@@ -1825,7 +6577,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -1835,16 +6587,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -1856,7 +7136,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -1900,7 +7180,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -1944,7 +7224,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -1988,7 +7268,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -2032,7 +7312,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -2076,7 +7356,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -2120,7 +7400,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -2164,7 +7444,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -2208,7 +7488,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -2252,7 +7532,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -2296,7 +7576,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -2340,7 +7620,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -2384,7 +7664,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -2428,7 +7708,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -2472,7 +7752,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -2516,7 +7796,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -2560,7 +7840,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -2604,7 +7884,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -2642,17 +7922,17 @@
},
{
"function": "Hospital",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2661,7 +7941,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2671,32 +7951,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2705,7 +7985,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2715,32 +7995,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2749,7 +8029,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2759,32 +8039,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2793,7 +8073,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2803,32 +8083,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2837,7 +8117,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2847,32 +8127,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2881,7 +8161,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2891,32 +8171,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2925,7 +10317,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2935,32 +10327,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -2969,7 +10361,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -2979,32 +10371,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -3013,7 +10405,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -3023,32 +10415,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -3057,7 +10449,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -3067,32 +10459,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -3101,7 +10493,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -3111,32 +10503,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "Hospital",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "9.31",
"east": "11.25",
@@ -3145,7 +10537,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -3155,16 +10547,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -3176,7 +11096,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -3220,7 +11140,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -3264,7 +11184,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -3308,7 +11228,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -3352,7 +11272,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -3396,7 +11316,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -3440,7 +11360,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -3484,7 +11404,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -3528,7 +11448,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -3572,7 +11492,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -3616,7 +11536,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -3660,7 +11580,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -3704,7 +11624,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -3748,7 +11668,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -3792,7 +11712,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -3836,7 +11756,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -3880,7 +11800,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -3924,7 +11844,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -3962,17 +11882,17 @@
},
{
"function": "LargeHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -3981,7 +11901,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -3991,32 +11911,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4025,7 +11945,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4035,32 +11955,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4069,7 +11989,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4079,32 +11999,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4113,7 +12033,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4123,32 +12043,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4157,7 +12077,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4167,32 +12087,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4201,7 +12121,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4211,32 +12131,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4245,7 +14277,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4255,32 +14287,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4289,7 +14321,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4299,32 +14331,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4333,7 +14365,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4343,32 +14375,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4377,7 +14409,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4387,32 +14419,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4421,7 +14453,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4431,32 +14463,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "LargeHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "15.61",
"east": "20.37",
@@ -4465,7 +14497,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -4475,16 +14507,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -4496,7 +15056,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -4540,7 +15100,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -4584,7 +15144,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -4628,7 +15188,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -4672,7 +15232,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -4716,7 +15276,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -4760,7 +15320,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -4804,7 +15364,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -4848,7 +15408,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -4892,7 +15452,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -4936,7 +15496,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -4980,7 +15540,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -5024,7 +15584,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -5068,7 +15628,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -5112,7 +15672,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -5156,7 +15716,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -5200,7 +15760,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -5244,7 +15804,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -5282,17 +15842,17 @@
},
{
"function": "LargeOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5301,7 +15861,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5311,32 +15871,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5345,7 +15905,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5355,32 +15915,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5389,7 +15949,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5399,32 +15959,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5433,7 +15993,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5443,32 +16003,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5477,7 +16037,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5487,32 +16047,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5521,7 +16081,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5531,32 +16091,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5565,7 +18237,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5575,32 +18247,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5609,7 +18281,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5619,32 +18291,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5653,7 +18325,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5663,32 +18335,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5697,7 +18369,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5707,32 +18379,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5741,7 +18413,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5751,32 +18423,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "LargeOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "35.29",
"east": "35.29",
@@ -5785,7 +18457,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -5795,16 +18467,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -5816,7 +19016,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -5860,7 +19060,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -5904,7 +19104,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -5948,7 +19148,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -5992,7 +19192,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -6036,7 +19236,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -6080,7 +19280,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -6124,7 +19324,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -6168,7 +19368,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -6212,7 +19412,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -6256,7 +19456,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -6300,7 +19500,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -6344,7 +19544,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -6388,7 +19588,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -6432,7 +19632,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -6476,7 +19676,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -6520,7 +19720,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -6564,7 +19764,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -6602,17 +19802,17 @@
},
{
"function": "MediumOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6621,7 +19821,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6631,32 +19831,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6665,7 +19865,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6675,32 +19875,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6709,7 +19909,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6719,32 +19919,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6753,7 +19953,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6763,32 +19963,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6797,7 +19997,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6807,32 +20007,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6841,7 +20041,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6851,32 +20051,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6885,7 +22197,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6895,32 +22207,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6929,7 +22241,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6939,32 +22251,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -6973,7 +22285,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -6983,32 +22295,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -7017,7 +22329,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -7027,32 +22339,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -7061,7 +22373,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -7071,32 +22383,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "MediumOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "33.01",
"east": "33.01",
@@ -7105,7 +22417,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -7115,16 +22427,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -7136,7 +22976,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -7180,7 +23020,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -7224,7 +23064,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -7268,7 +23108,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -7312,7 +23152,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -7356,7 +23196,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -7400,7 +23240,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -7444,7 +23284,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -7488,7 +23328,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -7532,7 +23372,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -7576,7 +23416,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -7620,7 +23460,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -7664,7 +23504,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -7708,7 +23548,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -7752,7 +23592,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -7796,7 +23636,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -7840,7 +23680,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -7884,7 +23724,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -7922,17 +23762,17 @@
},
{
"function": "MidriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -7941,7 +23781,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -7951,32 +23791,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -7985,7 +23825,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -7995,32 +23835,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8029,7 +23869,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8039,32 +23879,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8073,7 +23913,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8083,32 +23923,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8117,7 +23957,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8127,32 +23967,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8161,7 +24001,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8171,32 +24011,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8205,7 +26157,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8215,32 +26167,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8249,7 +26201,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8259,32 +26211,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8293,7 +26245,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8303,32 +26255,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8337,7 +26289,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8347,32 +26299,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8381,7 +26333,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8391,32 +26343,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "MidriseApartment",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "20.0",
"east": "21.25",
@@ -8425,7 +26377,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -8435,16 +26387,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -8456,7 +26936,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -8500,7 +26980,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -8544,7 +27024,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -8588,7 +27068,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -8632,7 +27112,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -8676,7 +27156,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -8720,7 +27200,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -8764,7 +27244,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -8808,7 +27288,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -8852,7 +27332,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -8896,7 +27376,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -8940,7 +27420,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -8984,7 +27464,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -9028,7 +27508,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -9072,7 +27552,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -9116,7 +27596,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -9160,7 +27640,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -9204,7 +27684,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -9242,17 +27722,17 @@
},
{
"function": "Outpatient",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9261,7 +27741,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9271,32 +27751,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9305,7 +27785,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9315,32 +27795,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9349,7 +27829,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9359,32 +27839,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9393,7 +27873,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9403,32 +27883,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9437,7 +27917,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9447,32 +27927,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9481,7 +27961,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9491,32 +27971,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9525,7 +30117,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9535,32 +30127,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9569,7 +30161,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9579,32 +30171,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9613,7 +30205,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9623,32 +30215,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9657,7 +30249,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9667,32 +30259,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9701,7 +30293,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9711,32 +30303,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "Outpatient",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "20.52",
"east": "19.14",
@@ -9745,7 +30337,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -9755,16 +30347,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -9776,7 +30896,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -9820,7 +30940,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -9864,7 +30984,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -9908,7 +31028,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -9952,7 +31072,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -9996,7 +31116,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -10040,7 +31160,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -10084,7 +31204,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -10128,7 +31248,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -10172,7 +31292,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -10216,7 +31336,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -10260,7 +31380,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -10304,7 +31424,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -10348,7 +31468,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -10392,7 +31512,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -10436,7 +31556,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -10480,7 +31600,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -10524,7 +31644,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -10562,17 +31682,17 @@
},
{
"function": "PrimarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10581,7 +31701,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10591,32 +31711,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10625,7 +31745,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10635,32 +31755,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10669,7 +31789,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10679,32 +31799,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10713,7 +31833,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10723,32 +31843,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10757,7 +31877,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10767,32 +31887,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10801,7 +31921,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10811,32 +31931,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10845,7 +34077,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10855,32 +34087,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10889,7 +34121,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10899,32 +34131,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10933,7 +34165,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10943,32 +34175,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -10977,7 +34209,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -10987,32 +34219,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -11021,7 +34253,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -11031,32 +34263,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "PrimarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -11065,7 +34297,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -11075,16 +34307,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -11096,7 +34856,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -11140,7 +34900,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -11184,7 +34944,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -11228,7 +34988,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -11272,7 +35032,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -11316,7 +35076,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -11360,7 +35120,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -11404,7 +35164,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -11448,7 +35208,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -11492,7 +35252,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -11536,7 +35296,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -11580,7 +35340,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -11624,7 +35384,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -11668,7 +35428,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -11712,7 +35472,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -11756,7 +35516,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -11800,7 +35560,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -11844,7 +35604,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -11882,17 +35642,17 @@
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -11901,7 +35661,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -11911,32 +35671,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -11945,7 +35705,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -11955,32 +35715,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -11989,7 +35749,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -11999,32 +35759,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12033,7 +35793,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12043,32 +35803,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12077,7 +35837,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12087,32 +35847,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12121,7 +35881,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12131,32 +35891,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12165,7 +38037,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12175,32 +38047,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12209,7 +38081,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12219,32 +38091,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12253,7 +38125,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12263,32 +38135,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12297,7 +38169,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12307,32 +38179,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12341,7 +38213,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12351,32 +38223,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "QuickServiceRestaurant",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "0.0",
"east": "14.0",
@@ -12385,7 +38257,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -12395,16 +38267,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -12416,7 +38816,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -12460,7 +38860,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -12504,7 +38904,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -12548,7 +38948,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -12592,7 +38992,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -12636,7 +39036,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -12680,7 +39080,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -12724,7 +39124,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -12768,7 +39168,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -12812,7 +39212,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -12856,7 +39256,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -12900,7 +39300,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -12944,7 +39344,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -12988,7 +39388,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -13032,7 +39432,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -13076,7 +39476,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -13120,7 +39520,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -13164,7 +39564,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -13202,17 +39602,17 @@
},
{
"function": "RetailStandalone",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13221,7 +39621,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13231,32 +39631,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13265,7 +39665,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13275,32 +39675,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13309,7 +39709,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13319,32 +39719,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13353,7 +39753,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13363,32 +39763,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13397,7 +39797,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13407,32 +39807,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13441,7 +39841,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13451,32 +39851,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13485,7 +41997,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13495,32 +42007,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13529,7 +42041,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13539,32 +42051,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13573,7 +42085,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13583,32 +42095,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13617,7 +42129,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13627,32 +42139,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13661,7 +42173,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13671,32 +42183,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "RetailStandalone",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -13705,7 +42217,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -13715,16 +42227,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -13736,7 +42776,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -13780,7 +42820,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -13824,7 +42864,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -13868,7 +42908,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -13912,7 +42952,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -13956,7 +42996,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -14000,7 +43040,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -14044,7 +43084,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -14088,7 +43128,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -14132,7 +43172,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -14176,7 +43216,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -14220,7 +43260,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -14264,7 +43304,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -14308,7 +43348,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -14352,7 +43392,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -14396,7 +43436,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -14440,7 +43480,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -14484,7 +43524,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -14522,17 +43562,17 @@
},
{
"function": "RetailStripmall",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14541,7 +43581,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14551,32 +43591,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14585,7 +43625,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14595,32 +43635,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14629,7 +43669,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14639,32 +43679,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14673,7 +43713,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14683,32 +43723,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14717,7 +43757,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14727,32 +43767,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14761,7 +43801,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14771,32 +43811,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14805,7 +45957,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14815,32 +45967,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14849,7 +46001,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14859,32 +46011,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14893,7 +46045,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14903,32 +46055,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14937,7 +46089,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14947,32 +46099,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -14981,7 +46133,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -14991,32 +46143,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "RetailStripmall",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -15025,7 +46177,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -15035,16 +46187,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -15056,7 +46736,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -15100,7 +46780,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -15144,7 +46824,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -15188,7 +46868,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -15232,7 +46912,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -15276,7 +46956,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -15320,7 +47000,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -15364,7 +47044,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -15408,7 +47088,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -15452,7 +47132,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -15496,7 +47176,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -15540,7 +47220,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -15584,7 +47264,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -15628,7 +47308,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -15672,7 +47352,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -15716,7 +47396,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -15760,7 +47440,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -15804,7 +47484,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -15842,17 +47522,17 @@
},
{
"function": "SecondarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -15861,7 +47541,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -15871,32 +47551,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -15905,7 +47585,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -15915,32 +47595,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -15949,7 +47629,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -15959,32 +47639,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -15993,7 +47673,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16003,32 +47683,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16037,7 +47717,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16047,32 +47727,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16081,7 +47761,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16091,32 +47771,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16125,7 +49917,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16135,32 +49927,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16169,7 +49961,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16179,32 +49971,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16213,7 +50005,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16223,32 +50015,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16257,7 +50049,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16267,32 +50059,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16301,7 +50093,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16311,32 +50103,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "SecondarySchool",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "35.0",
"east": "35.0",
@@ -16345,7 +50137,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -16355,16 +50147,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -16376,7 +50696,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -16420,7 +50740,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -16464,7 +50784,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -16508,7 +50828,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -16552,7 +50872,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -16596,7 +50916,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -16640,7 +50960,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -16684,7 +51004,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -16728,7 +51048,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -16772,7 +51092,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -16816,7 +51136,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -16860,7 +51180,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -16904,7 +51224,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -16948,7 +51268,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -16992,7 +51312,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -17036,7 +51356,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -17080,7 +51400,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -17124,7 +51444,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -17162,17 +51482,17 @@
},
{
"function": "SmallHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17181,7 +51501,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17191,32 +51511,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17225,7 +51545,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17235,32 +51555,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17269,7 +51589,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17279,32 +51599,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17313,7 +51633,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17323,32 +51643,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17357,7 +51677,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17367,32 +51687,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17401,7 +51721,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17411,32 +51731,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17445,7 +53877,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17455,32 +53887,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17489,7 +53921,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17499,32 +53931,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17533,7 +53965,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17543,32 +53975,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17577,7 +54009,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17587,32 +54019,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17621,7 +54053,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17631,32 +54063,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "SmallHotel",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "15.24",
"east": "3.95",
@@ -17665,7 +54097,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -17675,16 +54107,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -17696,7 +54656,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -17740,7 +54700,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -17784,7 +54744,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -17828,7 +54788,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -17872,7 +54832,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -17916,7 +54876,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -17960,7 +54920,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -18004,7 +54964,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -18048,7 +55008,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -18092,7 +55052,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -18136,7 +55096,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -18180,7 +55140,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -18224,7 +55184,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -18268,7 +55228,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -18312,7 +55272,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -18356,7 +55316,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -18400,7 +55360,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -18444,7 +55404,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -18482,17 +55442,17 @@
},
{
"function": "SmallOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18501,7 +55461,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18511,32 +55471,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18545,7 +55505,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18555,32 +55515,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18589,7 +55549,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18599,32 +55559,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18633,7 +55593,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18643,32 +55603,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18677,7 +55637,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18687,32 +55647,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18721,7 +55681,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18731,32 +55691,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18765,7 +57837,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18775,32 +57847,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18809,7 +57881,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18819,32 +57891,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18853,7 +57925,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18863,32 +57935,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18897,7 +57969,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18907,32 +57979,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18941,7 +58013,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18951,32 +58023,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "SmallOffice",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "19.81",
"east": "19.81",
@@ -18985,7 +58057,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -18995,16 +58067,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -19016,7 +58616,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -19060,7 +58660,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -19104,7 +58704,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -19148,7 +58748,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -19192,7 +58792,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -19236,7 +58836,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -19280,7 +58880,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -19324,7 +58924,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -19368,7 +58968,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -19412,7 +59012,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -19456,7 +59056,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -19500,7 +59100,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -19544,7 +59144,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -19588,7 +59188,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -19632,7 +59232,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -19676,7 +59276,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -19720,7 +59320,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -19764,7 +59364,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
@@ -19802,17 +59402,17 @@
},
{
"function": "Warehouse",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_4",
- "transparent_surface_name": "Window_1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -19821,7 +59421,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_4",
+ "opaque_surface_name": "1000_1900_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -19831,32 +59431,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_4"
+ "opaque_surface_name": "1000_1900_4"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_5",
- "transparent_surface_name": "Window_1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -19865,7 +59465,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_5",
+ "opaque_surface_name": "1000_1900_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -19875,32 +59475,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_5"
+ "opaque_surface_name": "1000_1900_5"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_6",
- "transparent_surface_name": "Window_1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -19909,7 +59509,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_6",
+ "opaque_surface_name": "1000_1900_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -19919,32 +59519,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_6"
+ "opaque_surface_name": "1000_1900_6"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7A",
- "transparent_surface_name": "Window_1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -19953,7 +59553,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A",
+ "opaque_surface_name": "1000_1900_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -19963,32 +59563,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7A"
+ "opaque_surface_name": "1000_1900_7A"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_7B",
- "transparent_surface_name": "Window_1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -19997,7 +59597,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B",
+ "opaque_surface_name": "1000_1900_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20007,32 +59607,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_7B"
+ "opaque_surface_name": "1000_1900_7B"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1000_1979",
+ "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.8,
+ "infiltration_rate_for_ventilation_system_off": 1.11,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1000_1979_8",
- "transparent_surface_name": "Window_1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20041,7 +59641,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1000_1979_8",
+ "opaque_surface_name": "1000_1900_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20051,32 +59651,2144 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundWall": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
},
"GroundFloor": {
- "opaque_surface_name": "1000_1979_8"
+ "opaque_surface_name": "1000_1900_8"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1980_2010",
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.1,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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.05,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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": 0.88,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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.79,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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,
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_4",
- "transparent_surface_name": "Window_1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20085,7 +61797,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_4",
+ "opaque_surface_name": "1981_1990_4",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20095,32 +61807,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_4"
+ "opaque_surface_name": "1981_1990_4"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_5",
- "transparent_surface_name": "Window_1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20129,7 +61841,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_5",
+ "opaque_surface_name": "1981_1990_5",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20139,32 +61851,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_5"
+ "opaque_surface_name": "1981_1990_5"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_6",
- "transparent_surface_name": "Window_1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20173,7 +61885,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_6",
+ "opaque_surface_name": "1981_1990_6",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20183,32 +61895,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_6"
+ "opaque_surface_name": "1981_1990_6"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7A",
- "transparent_surface_name": "Window_1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20217,7 +61929,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A",
+ "opaque_surface_name": "1981_1990_7A",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20227,32 +61939,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7A"
+ "opaque_surface_name": "1981_1990_7A"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_7B",
- "transparent_surface_name": "Window_1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20261,7 +61973,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B",
+ "opaque_surface_name": "1981_1990_7B",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20271,32 +61983,32 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_7B"
+ "opaque_surface_name": "1981_1990_7B"
}
}
},
{
"function": "Warehouse",
- "period_of_construction": "1980_2010",
+ "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": 1.0,
+ "infiltration_rate_for_ventilation_system_off": 0.62,
"constructions": {
"OutdoorsWall": {
- "opaque_surface_name": "1980_2010_8",
- "transparent_surface_name": "Window_1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
"transparent_ratio": {
"north": "0.0",
"east": "0.0",
@@ -20305,7 +62017,7 @@
}
},
"OutdoorsRoofCeiling": {
- "opaque_surface_name": "1980_2010_8",
+ "opaque_surface_name": "1981_1990_8",
"transparent_surface_name": null,
"transparent_ratio": {
"north": null,
@@ -20315,16 +62027,544 @@
}
},
"OutdoorsFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundWall": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundRoofCeiling": {
- "opaque_surface_name": "1980_2010_8"
+ "opaque_surface_name": "1981_1990_8"
},
"GroundFloor": {
- "opaque_surface_name": "1980_2010_8"
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.69,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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.61,
+ "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"
}
}
},
@@ -20336,7 +62576,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_4",
@@ -20380,7 +62620,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_5",
@@ -20424,7 +62664,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_6",
@@ -20468,7 +62708,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7A",
@@ -20512,7 +62752,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_7B",
@@ -20556,7 +62796,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2011_2016_8",
@@ -20600,7 +62840,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_4",
@@ -20644,7 +62884,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_5",
@@ -20688,7 +62928,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_6",
@@ -20732,7 +62972,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7A",
@@ -20776,7 +63016,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_7B",
@@ -20820,7 +63060,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2017_2019_8",
@@ -20864,7 +63104,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_4",
@@ -20908,7 +63148,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_5",
@@ -20952,7 +63192,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_6",
@@ -20996,7 +63236,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7A",
@@ -21040,7 +63280,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_7B",
@@ -21084,7 +63324,7 @@
"thermal_capacity": 200,
"extra_loses_due_thermal_bridges": 0.05,
"infiltration_rate_for_ventilation_system_on": 0,
- "infiltration_rate_for_ventilation_system_off": 0.3,
+ "infiltration_rate_for_ventilation_system_off": 0.31,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "2020_3000_8",
diff --git a/hub/data/construction/nrcan_constructions.json b/hub/data/construction/nrcan_constructions.json
index 16e1d6d5..7d4a6541 100644
--- a/hub/data/construction/nrcan_constructions.json
+++ b/hub/data/construction/nrcan_constructions.json
@@ -1,8 +1,8 @@
{
"opaque_surfaces": [
{
- "1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"type": "OutdoorsWall",
"u_value": 0.994,
@@ -15,8 +15,8 @@
}
},
{
- "1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"type": "OutdoorsRoofCeiling",
"u_value": 0.363,
@@ -29,8 +29,8 @@
}
},
{
- "1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -42,8 +42,8 @@
}
},
{
- "1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"type": "GroundWall",
"u_value": 0.678,
@@ -56,8 +56,8 @@
}
},
{
- "1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -70,8 +70,8 @@
}
},
{
- "1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"type": "GroundFloor",
"u_value": 0.678,
@@ -83,8 +83,8 @@
}
},
{
- "1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"type": "OutdoorsWall",
"u_value": 0.9,
@@ -97,8 +97,8 @@
}
},
{
- "1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"type": "OutdoorsRoofCeiling",
"u_value": 0.296,
@@ -111,8 +111,8 @@
}
},
{
- "1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -124,8 +124,8 @@
}
},
{
- "1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"type": "GroundWall",
"u_value": 0.678,
@@ -138,8 +138,8 @@
}
},
{
- "1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -152,8 +152,8 @@
}
},
{
- "1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"type": "GroundFloor",
"u_value": 0.678,
@@ -165,8 +165,8 @@
}
},
{
- "1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"type": "OutdoorsWall",
"u_value": 0.823,
@@ -179,8 +179,8 @@
}
},
{
- "1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"type": "OutdoorsRoofCeiling",
"u_value": 0.267,
@@ -193,8 +193,8 @@
}
},
{
- "1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -206,8 +206,8 @@
}
},
{
- "1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"type": "GroundWall",
"u_value": 0.678,
@@ -220,8 +220,8 @@
}
},
{
- "1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -234,8 +234,8 @@
}
},
{
- "1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"type": "GroundFloor",
"u_value": 0.678,
@@ -247,8 +247,8 @@
}
},
{
- "1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"type": "OutdoorsWall",
"u_value": 0.772,
@@ -261,8 +261,8 @@
}
},
{
- "1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"type": "OutdoorsRoofCeiling",
"u_value": 0.227,
@@ -275,8 +275,8 @@
}
},
{
- "1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -288,8 +288,8 @@
}
},
{
- "1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"type": "GroundWall",
"u_value": 0.678,
@@ -302,8 +302,8 @@
}
},
{
- "1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -316,8 +316,8 @@
}
},
{
- "1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"type": "GroundFloor",
"u_value": 0.678,
@@ -329,8 +329,8 @@
}
},
{
- "1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"type": "OutdoorsWall",
"u_value": 0.772,
@@ -343,8 +343,8 @@
}
},
{
- "1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"type": "OutdoorsRoofCeiling",
"u_value": 0.227,
@@ -357,8 +357,8 @@
}
},
{
- "1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -370,8 +370,8 @@
}
},
{
- "1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"type": "GroundWall",
"u_value": 0.678,
@@ -384,8 +384,8 @@
}
},
{
- "1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -398,8 +398,8 @@
}
},
{
- "1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"type": "GroundFloor",
"u_value": 0.678,
@@ -411,8 +411,8 @@
}
},
{
- "1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"type": "OutdoorsWall",
"u_value": 0.71,
@@ -425,8 +425,8 @@
}
},
{
- "1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"type": "OutdoorsRoofCeiling",
"u_value": 0.176,
@@ -439,8 +439,8 @@
}
},
{
- "1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -452,8 +452,8 @@
}
},
{
- "1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"type": "GroundWall",
"u_value": 0.678,
@@ -466,8 +466,8 @@
}
},
{
- "1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -480,8 +480,8 @@
}
},
{
- "1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"type": "GroundFloor",
"u_value": 0.678,
@@ -493,21 +493,22 @@
}
},
{
- "1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"type": "OutdoorsWall",
- "u_value": 0.568,
+ "u_value": 0.994,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_36": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"type": "OutdoorsRoofCeiling",
"u_value": 0.363,
@@ -520,8 +521,8 @@
}
},
{
- "1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -533,21 +534,22 @@
}
},
{
- "1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"type": "GroundWall",
- "u_value": 0.606,
+ "u_value": 0.678,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_39": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -560,8 +562,8 @@
}
},
{
- "1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"type": "GroundFloor",
"u_value": 0.678,
@@ -573,21 +575,22 @@
}
},
{
- "1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"type": "OutdoorsWall",
- "u_value": 0.682,
+ "u_value": 0.9,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_42": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"type": "OutdoorsRoofCeiling",
"u_value": 0.296,
@@ -600,8 +603,8 @@
}
},
{
- "1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -613,21 +616,22 @@
}
},
{
- "1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"type": "GroundWall",
- "u_value": 0.547,
+ "u_value": 0.678,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_45": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -640,8 +644,8 @@
}
},
{
- "1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"type": "GroundFloor",
"u_value": 0.678,
@@ -653,21 +657,22 @@
}
},
{
- "1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"type": "OutdoorsWall",
- "u_value": 0.426,
+ "u_value": 0.823,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_48": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"type": "OutdoorsRoofCeiling",
"u_value": 0.267,
@@ -680,8 +685,8 @@
}
},
{
- "1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -693,21 +698,22 @@
}
},
{
- "1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"type": "GroundWall",
- "u_value": 0.459,
+ "u_value": 0.678,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -720,8 +726,8 @@
}
},
{
- "1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"type": "GroundFloor",
"u_value": 0.678,
@@ -733,21 +739,22 @@
}
},
{
- "1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"type": "OutdoorsWall",
- "u_value": 0.346,
+ "u_value": 0.772,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_54": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"type": "OutdoorsRoofCeiling",
"u_value": 0.227,
@@ -760,8 +767,8 @@
}
},
{
- "1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -773,21 +780,22 @@
}
},
{
- "1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"type": "GroundWall",
- "u_value": 0.425,
+ "u_value": 0.678,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_57": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -800,8 +808,8 @@
}
},
{
- "1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"type": "GroundFloor",
"u_value": 0.678,
@@ -813,21 +821,22 @@
}
},
{
- "1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"type": "OutdoorsWall",
- "u_value": 0.346,
+ "u_value": 0.772,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_60": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"type": "OutdoorsRoofCeiling",
"u_value": 0.227,
@@ -840,8 +849,8 @@
}
},
{
- "1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -853,21 +862,22 @@
}
},
{
- "1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"type": "GroundWall",
- "u_value": 0.425,
+ "u_value": 0.678,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_63": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -880,8 +890,8 @@
}
},
{
- "1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"type": "GroundFloor",
"u_value": 0.678,
@@ -893,21 +903,22 @@
}
},
{
- "1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
"climate_zone": "8",
"type": "OutdoorsWall",
- "u_value": 0.267,
+ "u_value": 0.71,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_66": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
"climate_zone": "8",
"type": "OutdoorsRoofCeiling",
"u_value": 0.176,
@@ -920,8 +931,8 @@
}
},
{
- "1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
"climate_zone": "8",
"type": "OutdoorsFloor",
"u_value": 3.822,
@@ -933,21 +944,22 @@
}
},
{
- "1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
"climate_zone": "8",
"type": "GroundWall",
- "u_value": 0.347,
+ "u_value": 0.678,
"layers": {
- "Lightweight Metallic Cladding": 0.006,
+ "Brickwork Outer": 0.1,
"virtual_no_mass_69": 0,
+ "Concrete Block (Medium)": 0.1,
"Gypsum Plastering": 0.013
}
}
},
{
- "1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
"climate_zone": "8",
"type": "GroundRoofCeiling",
"u_value": 0.678,
@@ -960,8 +972,8 @@
}
},
{
- "1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
"climate_zone": "8",
"type": "GroundFloor",
"u_value": 0.678,
@@ -972,6 +984,4890 @@
}
}
},
+ {
+ "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",
@@ -980,7 +5876,7 @@
"u_value": 0.315,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_72": 0,
+ "virtual_no_mass_432": 0,
"Gypsum Plastering": 0.013
}
}
@@ -993,7 +5889,7 @@
"u_value": 0.227,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_73": 0,
+ "virtual_no_mass_433": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1007,7 +5903,7 @@
"u_value": 0.227,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_74": 0,
+ "virtual_no_mass_434": 0,
"Timber Flooring": 0.01
}
}
@@ -1020,7 +5916,7 @@
"u_value": 0.568,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_75": 0,
+ "virtual_no_mass_435": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1033,7 +5929,7 @@
"u_value": 0.568,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_76": 0,
+ "virtual_no_mass_436": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1047,7 +5943,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_77": 0,
+ "virtual_no_mass_437": 0,
"Timber Flooring": 0.01
}
}
@@ -1060,7 +5956,7 @@
"u_value": 0.278,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_78": 0,
+ "virtual_no_mass_438": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1073,7 +5969,7 @@
"u_value": 0.183,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_79": 0,
+ "virtual_no_mass_439": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1087,7 +5983,7 @@
"u_value": 0.183,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_80": 0,
+ "virtual_no_mass_440": 0,
"Timber Flooring": 0.01
}
}
@@ -1100,7 +5996,7 @@
"u_value": 0.379,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_81": 0,
+ "virtual_no_mass_441": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1113,7 +6009,7 @@
"u_value": 0.379,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_82": 0,
+ "virtual_no_mass_442": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1127,7 +6023,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_83": 0,
+ "virtual_no_mass_443": 0,
"Timber Flooring": 0.01
}
}
@@ -1140,7 +6036,7 @@
"u_value": 0.247,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_84": 0,
+ "virtual_no_mass_444": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1153,7 +6049,7 @@
"u_value": 0.183,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_85": 0,
+ "virtual_no_mass_445": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1167,7 +6063,7 @@
"u_value": 0.183,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_86": 0,
+ "virtual_no_mass_446": 0,
"Timber Flooring": 0.01
}
}
@@ -1180,7 +6076,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_87": 0,
+ "virtual_no_mass_447": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1193,7 +6089,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_88": 0,
+ "virtual_no_mass_448": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1207,7 +6103,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_89": 0,
+ "virtual_no_mass_449": 0,
"Timber Flooring": 0.01
}
}
@@ -1220,7 +6116,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_90": 0,
+ "virtual_no_mass_450": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1233,7 +6129,7 @@
"u_value": 0.162,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_91": 0,
+ "virtual_no_mass_451": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1247,7 +6143,7 @@
"u_value": 0.162,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_92": 0,
+ "virtual_no_mass_452": 0,
"Timber Flooring": 0.01
}
}
@@ -1260,7 +6156,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_93": 0,
+ "virtual_no_mass_453": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1273,7 +6169,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_94": 0,
+ "virtual_no_mass_454": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1287,7 +6183,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_95": 0,
+ "virtual_no_mass_455": 0,
"Timber Flooring": 0.01
}
}
@@ -1300,7 +6196,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_96": 0,
+ "virtual_no_mass_456": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1313,7 +6209,7 @@
"u_value": 0.162,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_97": 0,
+ "virtual_no_mass_457": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1327,7 +6223,7 @@
"u_value": 0.162,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_98": 0,
+ "virtual_no_mass_458": 0,
"Timber Flooring": 0.01
}
}
@@ -1340,7 +6236,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_99": 0,
+ "virtual_no_mass_459": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1353,7 +6249,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_100": 0,
+ "virtual_no_mass_460": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1367,7 +6263,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_101": 0,
+ "virtual_no_mass_461": 0,
"Timber Flooring": 0.01
}
}
@@ -1380,7 +6276,7 @@
"u_value": 0.183,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_102": 0,
+ "virtual_no_mass_462": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1393,7 +6289,7 @@
"u_value": 0.142,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_103": 0,
+ "virtual_no_mass_463": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1407,7 +6303,7 @@
"u_value": 0.142,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_104": 0,
+ "virtual_no_mass_464": 0,
"Timber Flooring": 0.01
}
}
@@ -1420,7 +6316,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_105": 0,
+ "virtual_no_mass_465": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1433,7 +6329,7 @@
"u_value": 0.21,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_106": 0,
+ "virtual_no_mass_466": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1447,7 +6343,7 @@
"u_value": 0.379,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_107": 0,
+ "virtual_no_mass_467": 0,
"Timber Flooring": 0.01
}
}
@@ -1460,7 +6356,7 @@
"u_value": 0.315,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_108": 0,
+ "virtual_no_mass_468": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1473,7 +6369,7 @@
"u_value": 0.193,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_109": 0,
+ "virtual_no_mass_469": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1487,7 +6383,7 @@
"u_value": 0.227,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_110": 0,
+ "virtual_no_mass_470": 0,
"Timber Flooring": 0.01
}
}
@@ -1500,7 +6396,7 @@
"u_value": 0.568,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_111": 0,
+ "virtual_no_mass_471": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1513,7 +6409,7 @@
"u_value": 0.568,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_112": 0,
+ "virtual_no_mass_472": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1527,7 +6423,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_113": 0,
+ "virtual_no_mass_473": 0,
"Timber Flooring": 0.01
}
}
@@ -1540,7 +6436,7 @@
"u_value": 0.278,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_114": 0,
+ "virtual_no_mass_474": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1553,7 +6449,7 @@
"u_value": 0.156,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_115": 0,
+ "virtual_no_mass_475": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1567,7 +6463,7 @@
"u_value": 0.183,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_116": 0,
+ "virtual_no_mass_476": 0,
"Timber Flooring": 0.01
}
}
@@ -1580,7 +6476,7 @@
"u_value": 0.379,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_117": 0,
+ "virtual_no_mass_477": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1593,7 +6489,7 @@
"u_value": 0.379,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_118": 0,
+ "virtual_no_mass_478": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1607,7 +6503,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_119": 0,
+ "virtual_no_mass_479": 0,
"Timber Flooring": 0.01
}
}
@@ -1620,7 +6516,7 @@
"u_value": 0.247,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_120": 0,
+ "virtual_no_mass_480": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1633,7 +6529,7 @@
"u_value": 0.156,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_121": 0,
+ "virtual_no_mass_481": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1647,7 +6543,7 @@
"u_value": 0.183,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_122": 0,
+ "virtual_no_mass_482": 0,
"Timber Flooring": 0.01
}
}
@@ -1660,7 +6556,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_123": 0,
+ "virtual_no_mass_483": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1673,7 +6569,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_124": 0,
+ "virtual_no_mass_484": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1687,7 +6583,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_125": 0,
+ "virtual_no_mass_485": 0,
"Timber Flooring": 0.01
}
}
@@ -1700,7 +6596,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_126": 0,
+ "virtual_no_mass_486": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1713,7 +6609,7 @@
"u_value": 0.138,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_127": 0,
+ "virtual_no_mass_487": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1727,7 +6623,7 @@
"u_value": 0.162,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_128": 0,
+ "virtual_no_mass_488": 0,
"Timber Flooring": 0.01
}
}
@@ -1740,7 +6636,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_129": 0,
+ "virtual_no_mass_489": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1753,7 +6649,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_130": 0,
+ "virtual_no_mass_490": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1767,7 +6663,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_131": 0,
+ "virtual_no_mass_491": 0,
"Timber Flooring": 0.01
}
}
@@ -1780,7 +6676,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_132": 0,
+ "virtual_no_mass_492": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1793,7 +6689,7 @@
"u_value": 0.138,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_133": 0,
+ "virtual_no_mass_493": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1807,7 +6703,7 @@
"u_value": 0.162,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_134": 0,
+ "virtual_no_mass_494": 0,
"Timber Flooring": 0.01
}
}
@@ -1820,7 +6716,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_135": 0,
+ "virtual_no_mass_495": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1833,7 +6729,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_136": 0,
+ "virtual_no_mass_496": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1847,7 +6743,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_137": 0,
+ "virtual_no_mass_497": 0,
"Timber Flooring": 0.01
}
}
@@ -1860,7 +6756,7 @@
"u_value": 0.183,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_138": 0,
+ "virtual_no_mass_498": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1873,7 +6769,7 @@
"u_value": 0.121,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_139": 0,
+ "virtual_no_mass_499": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1887,7 +6783,7 @@
"u_value": 0.142,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_140": 0,
+ "virtual_no_mass_500": 0,
"Timber Flooring": 0.01
}
}
@@ -1900,7 +6796,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_141": 0,
+ "virtual_no_mass_501": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1913,7 +6809,7 @@
"u_value": 0.21,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_142": 0,
+ "virtual_no_mass_502": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1927,7 +6823,7 @@
"u_value": 0.379,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_143": 0,
+ "virtual_no_mass_503": 0,
"Timber Flooring": 0.01
}
}
@@ -1940,7 +6836,7 @@
"u_value": 0.29,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_144": 0,
+ "virtual_no_mass_504": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1953,7 +6849,7 @@
"u_value": 0.164,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_145": 0,
+ "virtual_no_mass_505": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -1967,7 +6863,7 @@
"u_value": 0.193,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_146": 0,
+ "virtual_no_mass_506": 0,
"Timber Flooring": 0.01
}
}
@@ -1980,7 +6876,7 @@
"u_value": 0.568,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_147": 0,
+ "virtual_no_mass_507": 0,
"Gypsum Plastering": 0.013
}
}
@@ -1993,7 +6889,7 @@
"u_value": 0.568,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_148": 0,
+ "virtual_no_mass_508": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2007,7 +6903,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_149": 0,
+ "virtual_no_mass_509": 0,
"Timber Flooring": 0.01
}
}
@@ -2020,7 +6916,7 @@
"u_value": 0.265,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_150": 0,
+ "virtual_no_mass_510": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2033,7 +6929,7 @@
"u_value": 0.156,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_151": 0,
+ "virtual_no_mass_511": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2047,7 +6943,7 @@
"u_value": 0.175,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_152": 0,
+ "virtual_no_mass_512": 0,
"Timber Flooring": 0.01
}
}
@@ -2060,7 +6956,7 @@
"u_value": 0.379,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_153": 0,
+ "virtual_no_mass_513": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2073,7 +6969,7 @@
"u_value": 0.379,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_154": 0,
+ "virtual_no_mass_514": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2087,7 +6983,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_155": 0,
+ "virtual_no_mass_515": 0,
"Timber Flooring": 0.01
}
}
@@ -2100,7 +6996,7 @@
"u_value": 0.24,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_156": 0,
+ "virtual_no_mass_516": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2113,7 +7009,7 @@
"u_value": 0.138,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_157": 0,
+ "virtual_no_mass_517": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2127,7 +7023,7 @@
"u_value": 0.156,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_158": 0,
+ "virtual_no_mass_518": 0,
"Timber Flooring": 0.01
}
}
@@ -2140,7 +7036,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_159": 0,
+ "virtual_no_mass_519": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2153,7 +7049,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_160": 0,
+ "virtual_no_mass_520": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2167,7 +7063,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_161": 0,
+ "virtual_no_mass_521": 0,
"Timber Flooring": 0.01
}
}
@@ -2180,7 +7076,7 @@
"u_value": 0.215,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_162": 0,
+ "virtual_no_mass_522": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2193,7 +7089,7 @@
"u_value": 0.121,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_163": 0,
+ "virtual_no_mass_523": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2207,7 +7103,7 @@
"u_value": 0.138,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_164": 0,
+ "virtual_no_mass_524": 0,
"Timber Flooring": 0.01
}
}
@@ -2220,7 +7116,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_165": 0,
+ "virtual_no_mass_525": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2233,7 +7129,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_166": 0,
+ "virtual_no_mass_526": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2247,7 +7143,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_167": 0,
+ "virtual_no_mass_527": 0,
"Timber Flooring": 0.01
}
}
@@ -2260,7 +7156,7 @@
"u_value": 0.19,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_168": 0,
+ "virtual_no_mass_528": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2273,7 +7169,7 @@
"u_value": 0.117,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_169": 0,
+ "virtual_no_mass_529": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2287,7 +7183,7 @@
"u_value": 0.121,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_170": 0,
+ "virtual_no_mass_530": 0,
"Timber Flooring": 0.01
}
}
@@ -2300,7 +7196,7 @@
"u_value": 0.284,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_171": 0,
+ "virtual_no_mass_531": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2313,7 +7209,7 @@
"u_value": 0.284,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_172": 0,
+ "virtual_no_mass_532": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2327,7 +7223,7 @@
"u_value": 0.757,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_173": 0,
+ "virtual_no_mass_533": 0,
"Timber Flooring": 0.01
}
}
@@ -2340,7 +7236,7 @@
"u_value": 0.165,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_174": 0,
+ "virtual_no_mass_534": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2353,7 +7249,7 @@
"u_value": 0.11,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_175": 0,
+ "virtual_no_mass_535": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2367,7 +7263,7 @@
"u_value": 0.117,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_176": 0,
+ "virtual_no_mass_536": 0,
"Timber Flooring": 0.01
}
}
@@ -2380,7 +7276,7 @@
"u_value": 0.21,
"layers": {
"Lightweight Metallic Cladding": 0.006,
- "virtual_no_mass_177": 0,
+ "virtual_no_mass_537": 0,
"Gypsum Plastering": 0.013
}
}
@@ -2393,7 +7289,7 @@
"u_value": 0.21,
"layers": {
"Asphalt 1": 0.01,
- "virtual_no_mass_178": 0,
+ "virtual_no_mass_538": 0,
"MW Glass Wool (rolls)": 0.05,
"Plasterboard": 0.013
}
@@ -2407,7 +7303,7 @@
"u_value": 0.379,
"layers": {
"Cast Concrete": 0.1,
- "virtual_no_mass_179": 0,
+ "virtual_no_mass_539": 0,
"Timber Flooring": 0.01
}
}
@@ -2415,8 +7311,8 @@
],
"transparent_surfaces": [
{
- "Window_1000_1979_4": {
- "period_of_construction": "1000_1979",
+ "Window_1000_1900_4": {
+ "period_of_construction": "1000_1900",
"climate_zone": "4",
"shgc": 0.39,
"type": "Window",
@@ -2425,8 +7321,8 @@
}
},
{
- "Window_1000_1979_5": {
- "period_of_construction": "1000_1979",
+ "Window_1000_1900_5": {
+ "period_of_construction": "1000_1900",
"climate_zone": "5",
"shgc": 0.39,
"type": "Window",
@@ -2435,8 +7331,8 @@
}
},
{
- "Window_1000_1979_6": {
- "period_of_construction": "1000_1979",
+ "Window_1000_1900_6": {
+ "period_of_construction": "1000_1900",
"climate_zone": "6",
"shgc": 0.39,
"type": "Window",
@@ -2445,8 +7341,8 @@
}
},
{
- "Window_1000_1979_7A": {
- "period_of_construction": "1000_1979",
+ "Window_1000_1900_7A": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7A",
"shgc": 0.49,
"type": "Window",
@@ -2455,8 +7351,8 @@
}
},
{
- "Window_1000_1979_7B": {
- "period_of_construction": "1000_1979",
+ "Window_1000_1900_7B": {
+ "period_of_construction": "1000_1900",
"climate_zone": "7B",
"shgc": 0.49,
"type": "Window",
@@ -2465,8 +7361,8 @@
}
},
{
- "Window_1000_1979_8": {
- "period_of_construction": "1000_1979",
+ "Window_1000_1900_8": {
+ "period_of_construction": "1000_1900",
"climate_zone": "8",
"shgc": 0.41,
"type": "Window",
@@ -2475,8 +7371,8 @@
}
},
{
- "Window_1980_2010_4": {
- "period_of_construction": "1980_2010",
+ "Window_1901_1910_4": {
+ "period_of_construction": "1901_1910",
"climate_zone": "4",
"shgc": 0.39,
"type": "Window",
@@ -2485,8 +7381,8 @@
}
},
{
- "Window_1980_2010_5": {
- "period_of_construction": "1980_2010",
+ "Window_1901_1910_5": {
+ "period_of_construction": "1901_1910",
"climate_zone": "5",
"shgc": 0.39,
"type": "Window",
@@ -2495,8 +7391,8 @@
}
},
{
- "Window_1980_2010_6": {
- "period_of_construction": "1980_2010",
+ "Window_1901_1910_6": {
+ "period_of_construction": "1901_1910",
"climate_zone": "6",
"shgc": 0.39,
"type": "Window",
@@ -2505,8 +7401,8 @@
}
},
{
- "Window_1980_2010_7A": {
- "period_of_construction": "1980_2010",
+ "Window_1901_1910_7A": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7A",
"shgc": 0.49,
"type": "Window",
@@ -2515,8 +7411,8 @@
}
},
{
- "Window_1980_2010_7B": {
- "period_of_construction": "1980_2010",
+ "Window_1901_1910_7B": {
+ "period_of_construction": "1901_1910",
"climate_zone": "7B",
"shgc": 0.49,
"type": "Window",
@@ -2525,8 +7421,608 @@
}
},
{
- "Window_1980_2010_8": {
- "period_of_construction": "1980_2010",
+ "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",
@@ -3127,7 +8623,7 @@
{
"virtual_no_mass_36": {
"no_mass": true,
- "thermal_resistance": 1.7073737251092764
+ "thermal_resistance": 0.6584101668836548
}
},
{
@@ -3145,7 +8641,7 @@
{
"virtual_no_mass_39": {
"no_mass": true,
- "thermal_resistance": 1.5969753613292363
+ "thermal_resistance": 1.1273002032671475
}
},
{
@@ -3163,7 +8659,7 @@
{
"virtual_no_mass_42": {
"no_mass": true,
- "thermal_resistance": 1.413086004651633
+ "thermal_resistance": 0.7634850606909431
}
},
{
@@ -3181,7 +8677,7 @@
{
"virtual_no_mass_45": {
"no_mass": true,
- "thermal_resistance": 1.7749639097270375
+ "thermal_resistance": 1.1273002032671475
}
},
{
@@ -3199,7 +8695,7 @@
{
"virtual_no_mass_48": {
"no_mass": true,
- "thermal_resistance": 2.294228185203173
+ "thermal_resistance": 0.8674407782554092
}
},
{
@@ -3217,7 +8713,7 @@
{
"virtual_no_mass_51": {
"no_mass": true,
- "thermal_resistance": 2.125459582300353
+ "thermal_resistance": 1.1273002032671475
}
},
{
@@ -3235,7 +8731,7 @@
{
"virtual_no_mass_54": {
"no_mass": true,
- "thermal_resistance": 2.8369837552322106
+ "thermal_resistance": 0.9477107371445987
}
},
{
@@ -3253,7 +8749,7 @@
{
"virtual_no_mass_57": {
"no_mass": true,
- "thermal_resistance": 2.2997515212981745
+ "thermal_resistance": 1.1273002032671475
}
},
{
@@ -3271,7 +8767,7 @@
{
"virtual_no_mass_60": {
"no_mass": true,
- "thermal_resistance": 2.8369837552322106
+ "thermal_resistance": 0.9477107371445987
}
},
{
@@ -3289,7 +8785,7 @@
{
"virtual_no_mass_63": {
"no_mass": true,
- "thermal_resistance": 2.2997515212981745
+ "thermal_resistance": 1.1273002032671475
}
},
{
@@ -3307,7 +8803,7 @@
{
"virtual_no_mass_66": {
"no_mass": true,
- "thermal_resistance": 3.692128696887511
+ "thermal_resistance": 1.0608246538051842
}
},
{
@@ -3325,7 +8821,7 @@
{
"virtual_no_mass_69": {
"no_mass": true,
- "thermal_resistance": 2.8286547252310448
+ "thermal_resistance": 1.1273002032671475
}
},
{
@@ -3343,647 +8839,2807 @@
{
"virtual_no_mass_72": {
"no_mass": true,
- "thermal_resistance": 3.1214135194307606
+ "thermal_resistance": 0.6584101668836548
}
},
{
"virtual_no_mass_73": {
"no_mass": true,
- "thermal_resistance": 3.08900062932662
+ "thermal_resistance": 1.4385352223534045
}
},
{
"virtual_no_mass_74": {
"no_mass": true,
- "thermal_resistance": 4.245362196962524
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_75": {
"no_mass": true,
- "thermal_resistance": 1.7073737251092764
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_76": {
"no_mass": true,
- "thermal_resistance": 0.44427766599597596
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_77": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_78": {
"no_mass": true,
- "thermal_resistance": 3.5439326469858594
+ "thermal_resistance": 0.7634850606909431
}
},
{
"virtual_no_mass_79": {
"no_mass": true,
- "thermal_resistance": 4.148195160031225
+ "thermal_resistance": 2.0620926640926642
}
},
{
"virtual_no_mass_80": {
"no_mass": true,
- "thermal_resistance": 5.304556727667129
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_81": {
"no_mass": true,
- "thermal_resistance": 2.5853327722682193
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_82": {
"no_mass": true,
- "thermal_resistance": 1.3222367131549189
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_83": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_84": {
"no_mass": true,
- "thermal_resistance": 3.995393340779003
+ "thermal_resistance": 0.8674407782554092
}
},
{
"virtual_no_mass_85": {
"no_mass": true,
- "thermal_resistance": 4.148195160031225
+ "thermal_resistance": 2.4290326377742106
}
},
{
"virtual_no_mass_86": {
"no_mass": true,
- "thermal_resistance": 5.304556727667129
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_87": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_88": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_89": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_90": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 0.9477107371445987
}
},
{
"virtual_no_mass_91": {
"no_mass": true,
- "thermal_resistance": 4.856553791887125
+ "thermal_resistance": 3.08900062932662
}
},
{
"virtual_no_mass_92": {
"no_mass": true,
- "thermal_resistance": 6.012915359523029
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_93": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_94": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_95": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_96": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 0.9477107371445987
}
},
{
"virtual_no_mass_97": {
"no_mass": true,
- "thermal_resistance": 4.856553791887125
+ "thermal_resistance": 3.08900062932662
}
},
{
"virtual_no_mass_98": {
"no_mass": true,
- "thermal_resistance": 6.012915359523029
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_99": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_100": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_101": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_102": {
"no_mass": true,
- "thermal_resistance": 5.411291219144526
+ "thermal_resistance": 1.0608246538051842
}
},
{
"virtual_no_mass_103": {
"no_mass": true,
- "thermal_resistance": 5.725967806841046
+ "thermal_resistance": 4.365532467532468
}
},
{
"virtual_no_mass_104": {
"no_mass": true,
- "thermal_resistance": 6.88232937447695
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_105": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_106": {
"no_mass": true,
- "thermal_resistance": 3.4456190476190476
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_107": {
"no_mass": true,
- "thermal_resistance": 2.478598280790823
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_108": {
"no_mass": true,
- "thermal_resistance": 3.1214135194307606
+ "thermal_resistance": 0.6584101668836548
}
},
{
"virtual_no_mass_109": {
"no_mass": true,
- "thermal_resistance": 3.865061435973353
+ "thermal_resistance": 1.4385352223534045
}
},
{
"virtual_no_mass_110": {
"no_mass": true,
- "thermal_resistance": 4.245362196962524
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_111": {
"no_mass": true,
- "thermal_resistance": 1.7073737251092764
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_112": {
"no_mass": true,
- "thermal_resistance": 0.44427766599597596
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_113": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_114": {
"no_mass": true,
- "thermal_resistance": 3.5439326469858594
+ "thermal_resistance": 0.7634850606909431
}
},
{
"virtual_no_mass_115": {
"no_mass": true,
- "thermal_resistance": 5.093970695970697
+ "thermal_resistance": 2.0620926640926642
}
},
{
"virtual_no_mass_116": {
"no_mass": true,
- "thermal_resistance": 5.304556727667129
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_117": {
"no_mass": true,
- "thermal_resistance": 2.5853327722682193
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_118": {
"no_mass": true,
- "thermal_resistance": 1.3222367131549189
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_119": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_120": {
"no_mass": true,
- "thermal_resistance": 3.995393340779003
+ "thermal_resistance": 0.8674407782554092
}
},
{
"virtual_no_mass_121": {
"no_mass": true,
- "thermal_resistance": 5.093970695970697
+ "thermal_resistance": 2.4290326377742106
}
},
{
"virtual_no_mass_122": {
"no_mass": true,
- "thermal_resistance": 5.304556727667129
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_123": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_124": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_125": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_126": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 0.9477107371445987
}
},
{
"virtual_no_mass_127": {
"no_mass": true,
- "thermal_resistance": 5.9300910973084875
+ "thermal_resistance": 3.08900062932662
}
},
{
"virtual_no_mass_128": {
"no_mass": true,
- "thermal_resistance": 6.012915359523029
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_129": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_130": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_131": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_132": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 0.9477107371445987
}
},
{
"virtual_no_mass_133": {
"no_mass": true,
- "thermal_resistance": 5.9300910973084875
+ "thermal_resistance": 3.08900062932662
}
},
{
"virtual_no_mass_134": {
"no_mass": true,
- "thermal_resistance": 6.012915359523029
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_135": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_136": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_137": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_138": {
"no_mass": true,
- "thermal_resistance": 5.411291219144526
+ "thermal_resistance": 1.0608246538051842
}
},
{
"virtual_no_mass_139": {
"no_mass": true,
- "thermal_resistance": 6.948177095631642
+ "thermal_resistance": 4.365532467532468
}
},
{
"virtual_no_mass_140": {
"no_mass": true,
- "thermal_resistance": 6.88232937447695
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_141": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_142": {
"no_mass": true,
- "thermal_resistance": 3.4456190476190476
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_143": {
"no_mass": true,
- "thermal_resistance": 2.478598280790823
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_144": {
"no_mass": true,
- "thermal_resistance": 3.395086206896552
+ "thermal_resistance": 0.6584101668836548
}
},
{
"virtual_no_mass_145": {
"no_mass": true,
- "thermal_resistance": 4.781275261324042
+ "thermal_resistance": 1.4385352223534045
}
},
{
"virtual_no_mass_146": {
"no_mass": true,
- "thermal_resistance": 5.021423003609256
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_147": {
"no_mass": true,
- "thermal_resistance": 1.7073737251092764
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_148": {
"no_mass": true,
- "thermal_resistance": 0.44427766599597596
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_149": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_150": {
"no_mass": true,
- "thermal_resistance": 3.720395250487963
+ "thermal_resistance": 0.7634850606909431
}
},
{
"virtual_no_mass_151": {
"no_mass": true,
- "thermal_resistance": 5.093970695970697
+ "thermal_resistance": 2.0620926640926642
}
},
{
"virtual_no_mass_152": {
"no_mass": true,
- "thermal_resistance": 5.554361567635904
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_153": {
"no_mass": true,
- "thermal_resistance": 2.5853327722682193
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_154": {
"no_mass": true,
- "thermal_resistance": 1.3222367131549189
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_155": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_156": {
"no_mass": true,
- "thermal_resistance": 4.113477011494253
+ "thermal_resistance": 0.8674407782554092
}
},
{
"virtual_no_mass_157": {
"no_mass": true,
- "thermal_resistance": 5.9300910973084875
+ "thermal_resistance": 2.4290326377742106
}
},
{
"virtual_no_mass_158": {
"no_mass": true,
- "thermal_resistance": 6.2503322636066
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_159": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_160": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_161": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_162": {
"no_mass": true,
- "thermal_resistance": 4.597973135525261
+ "thermal_resistance": 0.9477107371445987
}
},
{
"virtual_no_mass_163": {
"no_mass": true,
- "thermal_resistance": 6.948177095631642
+ "thermal_resistance": 3.08900062932662
}
},
{
"virtual_no_mass_164": {
"no_mass": true,
- "thermal_resistance": 7.0864526649443915
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_165": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_166": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_167": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_168": {
"no_mass": true,
- "thermal_resistance": 5.209968239564429
+ "thermal_resistance": 0.9477107371445987
}
},
{
"virtual_no_mass_169": {
"no_mass": true,
- "thermal_resistance": 7.230722832722833
+ "thermal_resistance": 3.08900062932662
}
},
{
"virtual_no_mass_170": {
"no_mass": true,
- "thermal_resistance": 8.104538663267546
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_171": {
"no_mass": true,
- "thermal_resistance": 3.4679371053909667
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_172": {
"no_mass": true,
- "thermal_resistance": 2.204841046277666
+ "thermal_resistance": 0.15864053940160128
}
},
{
"virtual_no_mass_173": {
"no_mass": true,
- "thermal_resistance": 1.1610798163620788
+ "thermal_resistance": 1.3150021070375053
}
},
{
"virtual_no_mass_174": {
"no_mass": true,
- "thermal_resistance": 6.007416405433647
+ "thermal_resistance": 1.0608246538051842
}
},
{
"virtual_no_mass_175": {
"no_mass": true,
- "thermal_resistance": 7.774623376623378
+ "thermal_resistance": 4.365532467532468
}
},
{
"virtual_no_mass_176": {
"no_mass": true,
- "thermal_resistance": 8.387084400358736
+ "thermal_resistance": 0.10171897213616554
}
},
{
"virtual_no_mass_177": {
"no_mass": true,
- "thermal_resistance": 4.708715106732348
+ "thermal_resistance": 1.1273002032671475
}
},
{
"virtual_no_mass_178": {
"no_mass": true,
- "thermal_resistance": 3.4456190476190476
+ "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
}
diff --git a/hub/data/costs/montreal_costs_oriol.xml b/hub/data/costs/montreal_costs_oriol.xml
deleted file mode 100644
index cadb2391..00000000
--- a/hub/data/costs/montreal_costs_oriol.xml
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
- 15.89
- 215.90
-
-
-
- 0
- 0
- 50
-
-
-
- 304
- 304
- 50
-
-
- 857.14
- 857.14
- 20
-
-
-
-
- 118
- 118
- 50
-
-
- 857.14
- 857.14
- 20
-
-
-
-
-
- 0
- 0
- 50
-
-
- 0
- 0
- 50
-
-
-
- 50
- 50
- 20
-
-
- 62
- 62
- 20
-
-
- 70
- 70
- 20
-
-
-
-
- 0
- 100
-
-
-
- 800
- 800
- 25
-
-
-
- 622.86
- 622.86
- 25
-
-
- 622.86
- 622.86
- 15
-
-
- 0
- 0
- 15
-
-
- 0
- 0
- 15
-
-
- 47.62
- 47.62
- 15
-
-
-
-
- 171.43
- 171.43
- 20
-
-
- 139
- 139
- 20
-
-
-
-
-
- 0
- 0
- 15
-
-
- 0
- 0
- 15
-
-
- 2.5
-
-
-
-
- 0
- 0
-
- 5.6
-
-
- 40
- 40
- 0.05
- 1
- 4.6
-
- 30
-
- 6.3
-
-
- 2
- 1.5
- 3.6
-
-
- hourlydatatable
- 0
-
-
- 2
-
- 0
-
-
-
\ No newline at end of file
diff --git a/hub/data/costs/montreal_costs_oriol_LOD0.xml b/hub/data/costs/montreal_costs_oriol_LOD0.xml
deleted file mode 100644
index 8c1ae830..00000000
--- a/hub/data/costs/montreal_costs_oriol_LOD0.xml
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
- 0
-
-
-
- 304
-
-
- 857.14
-
-
-
-
- 118
-
-
-
-
-
-
-
- 800
- 800
- 25
-
-
-
- 622.86
- 622.86
- 25
-
-
- 622.86
- 622.86
- 15
-
-
- 0
- 0
- 15
-
-
- 47.62
- 47.62
- 15
-
-
-
-
- 139
- 139
- 20
-
-
-
-
- 2.5
- 14
-
-
-
-
-
- 12.27
- 0
-
- 0.075
-
-
-
- 17.71
-
- 0.640
-
-
- 1.2
-
-
- 0.09
-
-
- 40
- 40
- 1
-
- 30
-
- 6.3
-
-
- 2
- 1.5
- 3.6
-
-
- 0
-
-
- 2
-
-
-
-
-
-
-
- 0
-
-
-
- 304
-
-
- 857.14
-
-
-
-
- 118
-
-
-
-
-
-
-
- 800
- 800
- 25
-
-
-
- 622.86
- 622.86
- 25
-
-
- 622.86
- 622.86
- 15
-
-
- 0
- 0
- 15
-
-
- 47.62
- 47.62
- 15
-
-
-
-
- 139
- 139
- 20
-
-
-
-
- 6
- 14
-
-
-
-
-
- 12.27
- 0
-
- 0.075
-
-
-
- 17.71
-
- 0.640
-
-
- 1.2
-
-
- 0.09
-
-
- 40
- 40
- 1
-
- 30
-
- 6.3
-
-
- 2
- 1.5
- 3.6
-
-
- 0
-
-
- 2
-
-
-
-
\ No newline at end of file
diff --git a/hub/data/costs/montreal_costs_oriol_LOD1.xml b/hub/data/costs/montreal_costs_oriol_LOD1.xml
deleted file mode 100644
index 93e4795a..00000000
--- a/hub/data/costs/montreal_costs_oriol_LOD1.xml
+++ /dev/null
@@ -1,178 +0,0 @@
-
-
-
-
- 15.89
- 215.90
-
-
-
- 0
- 0
- 50
-
-
-
- 304
- 304
- 50
-
-
- 857.14
- 857.14
- 20
-
-
-
-
- 118
- 118
- 50
-
-
- 857.14
- 857.14
- 20
-
-
-
-
-
- 0
- 0
- 50
-
-
- 0
- 0
- 50
-
-
-
- 50
- 50
- 20
-
-
- 62
- 62
- 20
-
-
- 70
- 70
- 20
-
-
-
-
- 0
- 100
-
-
-
- 800
- 800
- 25
-
-
-
- 622.86
- 622.86
- 25
-
-
- 622.86
- 622.86
- 15
-
-
- 0
- 0
- 15
-
-
- 0
- 0
- 15
-
-
- 47.62
- 47.62
- 15
-
-
-
-
- 171.43
- 171.43
- 20
-
-
- 139
- 139
- 20
-
-
-
-
-
- 0
- 0
- 15
-
-
- 0
- 0
- 15
-
-
- 2.5
-
-
-
-
- 12.27
-
- hourlydatatable1
- hourlydatatable2
-
-
-
- 17.71
-
- 0.640
-
-
- 1.2
-
-
- 0.09
-
-
- 40
- 40
- 0.05
- 1
- 4.6
-
- 30
-
- 6.3
-
-
- 2
- 1.5
- 3.6
-
-
- hourlydatatable
- 0
-
-
- 2
-
- 0
-
-
-
\ No newline at end of file
diff --git a/hub/data/energy_systems/heat_pumps/as_parallel.txt b/hub/data/energy_systems/heat_pumps/as_parallel.txt
index 581f7a0e..4990010f 100644
--- a/hub/data/energy_systems/heat_pumps/as_parallel.txt
+++ b/hub/data/energy_systems/heat_pumps/as_parallel.txt
@@ -97,7 +97,7 @@ P 40
B 41 CONST
P 41
- $HPDisactivationTemperature % Constant value
+ $HPDeactivationTemperature % Constant value
B 42 CONST
P 42
diff --git a/hub/data/energy_systems/heat_pumps/as_series.txt b/hub/data/energy_systems/heat_pumps/as_series.txt
index cc78cb9c..fed71de2 100644
--- a/hub/data/energy_systems/heat_pumps/as_series.txt
+++ b/hub/data/energy_systems/heat_pumps/as_series.txt
@@ -97,7 +97,7 @@ P 30
B 31 CONST
P 31
- $HPDisactivationTemperature % Constant value
+ $HPDeactivationTemperature % Constant value
B 32 CONST
P 32
diff --git a/hub/data/energy_systems/heat_pumps/w2w_parallel.txt b/hub/data/energy_systems/heat_pumps/w2w_parallel.txt
index 5d1e2934..4fcbe132 100644
--- a/hub/data/energy_systems/heat_pumps/w2w_parallel.txt
+++ b/hub/data/energy_systems/heat_pumps/w2w_parallel.txt
@@ -339,7 +339,7 @@ P 142
B 143 CONST
P 143
- $HPDisactivationTemperature % Constant value
+ $HPDeactivationTemperature % Constant value
B 144 CONST
P 144
diff --git a/hub/data/energy_systems/heat_pumps/w2w_series.txt b/hub/data/energy_systems/heat_pumps/w2w_series.txt
index ca05aeed..58cbb323 100644
--- a/hub/data/energy_systems/heat_pumps/w2w_series.txt
+++ b/hub/data/energy_systems/heat_pumps/w2w_series.txt
@@ -303,7 +303,7 @@ P 106
B 107 CONST
P 107
- $HPDisactivationTemperature % Constant value
+ $HPDeactivationTemperature % Constant value
B 108 CONST
P 108
diff --git a/hub/data/energy_systems/montreal_custom_systems.xml b/hub/data/energy_systems/montreal_custom_systems.xml
new file mode 100644
index 00000000..b9eaee8e
--- /dev/null
+++ b/hub/data/energy_systems/montreal_custom_systems.xml
@@ -0,0 +1,391 @@
+
+
+
+ Fuel-fired water boiler
+ 0.85
+ false
+
+
+ Electric water boiler
+ 1
+ true
+
+
+ Fuel-fired furnace and fuel boiler for acs
+ 0.85
+ false
+
+
+ Electrical furnace and fuel boiler for acs
+ 1
+ false
+
+
+ Air cooled DX with external condenser
+ 3.23
+ false
+
+
+ PV system
+ 0.22
+ true
+
+
+
+
+ Water distribution heating
+ 10
+ 4
+ 1
+
+
+ Water distribution cooling
+ 10
+ 4
+ 1
+
+
+ Central air distribution heating
+ 10
+ 13
+ 13
+
+
+ Central air distribution cooling
+ 10
+ 13
+ 13
+
+
+ Local air distribution heating
+ 10
+ 8
+ 8
+
+
+ Local air distribution cooling
+ 10
+ 8
+ 8
+
+
+ Refrigerant distribution
+ 1
+ 1
+ 2
+
+
+ No distribution
+ 0
+ 0
+ 0
+
+
+
+
+ Baseboards
+ 0
+
+
+ fan-coils
+ 2
+
+
+ inductors
+ 0
+
+
+
+
+ Unitary air conditioner with baseboard heater fuel fired boiler
+
+ heating
+ domestic_hot_water
+
+
+ 1
+ 1
+ 1
+
+
+
+ 4 pipe fan coils with fuel fired boiler
+
+ heating
+ domestic_hot_water
+
+
+ 1
+ 1
+ 2
+
+
+
+ 4 pipe fan coils with electrical resistance water boiler
+
+ heating
+ domestic_hot_water
+
+
+ 2
+ 1
+ 2
+
+
+
+ Single zone packaged rooftop unit with fuel-fired furnace and baseboards and fuel boiler for acs
+
+ heating
+ domestic_hot_water
+
+
+ 3
+ 5
+ 1
+
+
+
+ Single zone packaged rooftop unit with electrical resistance furnace and baseboards and fuel boiler for acs
+
+ heating
+ domestic_hot_water
+
+
+ 4
+ 5
+ 1
+
+
+
+ Single zone make-up air unit with baseboard heating with fuel fired boiler
+
+ heating
+ domestic_hot_water
+
+
+ 1
+ 1
+ 1
+
+
+
+ Single zone make-up air unit with electrical baseboard heating and DHW with resistance
+
+ heating
+ domestic_hot_water
+
+
+ 2
+ 5
+ 3
+
+
+
+ Multi-zone built-up system with baseboard heater hydronic with fuel fired boiler
+
+ heating
+ domestic_hot_water
+
+
+ 2
+ 1
+ 3
+
+
+
+ Multi-zone built-up system with electrical baseboard heater and electrical hot water
+
+ heating
+ domestic_hot_water
+
+
+ 2
+ 1
+ 3
+
+
+
+ Unitary air conditioner air cooled DX with external condenser
+
+ cooling
+
+
+ 5
+ 6
+ 3
+
+
+
+ 4 pipe fan coils with water cooled, water chiller
+
+ cooling
+
+
+ 5
+ 2
+ 2
+
+
+
+ Single zone packaged rooftop unit with air cooled DX
+
+ cooling
+
+
+ 5
+ 6
+ 3
+
+
+
+ Single zone make-up air unit with air cooled DX
+
+ cooling
+
+
+ 5
+ 6
+ 3
+
+
+
+ Multi-zone built-up system with water cooled, water chiller
+
+ cooling
+
+
+ 5
+ 3
+ 3
+
+
+
+ PV system
+
+ electricity
+
+
+ 6
+ 5
+ 3
+
+
+
+
+
+
+ 1
+ 7
+
+
+
+
+ 1
+ 7
+ 15
+
+
+
+
+ 1
+ 10
+
+
+
+
+ 2
+ 10
+ 15
+
+
+
+
+ 2
+ 11
+
+
+
+
+ 2
+ 11
+ 15
+
+
+
+
+ 3
+ 11
+
+
+
+
+ 3
+ 11
+ 15
+
+
+
+
+ 4
+ 12
+
+
+
+
+ 4
+ 12
+ 15
+
+
+
+
+ 5
+ 12
+
+
+
+
+ 5
+ 12
+ 15
+
+
+
+
+ 11
+
+
+
+
+ 11
+ 15
+
+
+
+
+ 8
+ 14
+
+
+
+
+ 8
+ 14
+ 15
+
+
+
+
+ 9
+ 14
+
+
+
+
+ 9
+ 14
+ 15
+
+
+
+
diff --git a/hub/data/energy_systems/nrcan.xml b/hub/data/energy_systems/nrcan.xml
deleted file mode 100644
index d9843ae5..00000000
--- a/hub/data/energy_systems/nrcan.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- boiler_set.json
- chiller_set.json
- curves.json
- furnace_set.json
- heat_pumps.json
- shw_set.json
- pv.json
- unitary_acs.json
-
diff --git a/hub/data/life_cycle_assessment/lca_data.xml b/hub/data/life_cycle_assessment/lca_data.xml
deleted file mode 100644
index a211543f..00000000
--- a/hub/data/life_cycle_assessment/lca_data.xml
+++ /dev/null
@@ -1,559 +0,0 @@
-
-
-
-
- 0.32
-
-
- 0.4
-
-
- 0.4
-
-
- 0.5
-
-
- 0.18
-
-
- 0.39
-
-
- 0.27
-
-
- 4.16
-
-
- 2.24
-
-
- 0.2
-
-
- 3.19
-
-
- 3.53
-
-
- 0.27
-
-
- 0.21
-
-
- 1.69
-
-
- 0.21
-
-
- 0.35
-
-
- 0.18
-
-
- 0.81
-
-
- 1.21
-
-
- 1.61
-
-
- 0.11
-
-
- 0.3
-
-
- 1.16
-
-
- 0.61
-
-
-
-
- 0.347
- 16.5
- 0.918
-
-
- 0.033
- 25.2
- 4.16
-
-
- 0.027
- 16.8
- 2.239
-
-
- 0.023
- 16.8
- 2.239
-
-
- 0.109
- 25.2
- 2.239
-
-
- 0.003
- 16.4
- 4.16
-
-
- 0.002
- 11
- 0.918
-
-
- 0.002
- 90
- 0.918
-
-
- 0.002
- 10
- 0.918
-
-
- 0.002
- 11
- 0.918
-
-
- 0.002
- 132
- 0.918
-
-
- 0.002
- 15
- 0.918
-
-
- 0.002
- 5.5
- 0.918
-
-
- 0.002
- 22.5
- 0.918
-
-
-
-
- 0.0123
- 2.239
-
-
- 0.042
- 0.918
-
-
- 0.01
- 1.00000
-
-
- 1.3
- 1.00000
-
-
-
-
- 1.8
- 560
- 0.8
- 0.3
- 0.7
- 0.2
- 0.1
-
-
- 1.2
- 310
- 0.8
- 0.3
- 0.7
- 0.2
- 0.1
-
-
- 2
- 3080
- 0.8
- 0.3
- 0.7
- 0.2
- 0.1
-
-
- 1.4
- 300
- 0.8
- 0.3
- 0.7
- 0.2
- 0.1
-
-
- 1.6
- 900
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.6
- 2340
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.6
- 1570
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.4
- 1840
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.3
- 410
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.3
- 160
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.3
- 170
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.3
- 230
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.4
- 240
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.4
- 280
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.3
- 170
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.2
- 440
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.58
- 2660
- 0.95
- 0
- 1
- 0.05
- 0.1
-
-
- 2.58
- 5260
- 0.95
- 0
- 1
- 0.05
- 0.1
-
-
- 0.06
- 1760
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.122
- 3080
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.028
- 3180
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.024
- 5140
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.1
- 6040
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.3
- 5380
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.032
- 2150
- 0.9
- 0
- 1
- 0.1
- 0.1
-
-
- 0.9
- 3420
- 0.6
- 0
- 1
- 0.4
- 0.1
-
-
- 0.7
- 1430
- 0.6
- 0
- 1
- 0.4
- 0.1
-
-
- 0.65
- 2780
- 0.6
- 0
- 1
- 0.4
- 0.1
-
-
- 0.72
- 2190
- 0.6
- 0
- 1
- 0.4
- 0.1
-
-
- 1.43
- 1070
- 0
- 0
- 0
- 1
- 0.1
-
-
- 1.43
- 240
- 0
- 0
- 0
- 1
- 0.1
-
-
- 1.43
- 430
- 0
- 0
- 0
- 1
- 0.1
-
-
- 1.43
- 340
- 0
- 0
- 0
- 1
- 0.1
-
-
- 1.2
- 440
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 2.1
- 1410
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.43
- 250
- 0
- 0
- 0
- 1
- 0.1
-
-
- 1.44
- 1480
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.44
- 2220
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.27
- 3960
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 1.15
- 760
- 0.8
- 0
- 1
- 0.2
- 0.1
-
-
- 8
- 3160
- 0.98
- 0
- 1
- 0.02
- 0.1
-
-
- 2.7
- 5370
- 0.98
- 0
- 1
- 0.02
- 0.1
-
-
- 7.85
- 3910
- 0.98
- 0
- 1
- 0.02
- 0.1
-
-
-
\ No newline at end of file
diff --git a/hub/data/schedules/Data-driven_schedules_model_test.xlsx b/hub/data/schedules/Data-driven_schedules_model_test.xlsx
deleted file mode 100644
index 549f7577..00000000
Binary files a/hub/data/schedules/Data-driven_schedules_model_test.xlsx and /dev/null differ
diff --git a/hub/data/schedules/doe_idf.xml b/hub/data/schedules/doe_idf.xml
deleted file mode 100644
index 949a57cc..00000000
--- a/hub/data/schedules/doe_idf.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- idf_files/ASHRAE901_OfficeSmall_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_ApartmentMidRise_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_Hospital_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_HotelLarge_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_HotelSmall_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_OfficeLarge_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_OfficeMedium_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_OfficeSmall_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_OutPatientHealthCare_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_RestaurantFastFood_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_RestaurantSitDown_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_RetailStandalone_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_RetailStripmall_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_SchoolPrimary_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_SchoolSecondary_STD2019_Rochester.idf
-
-
-
-
- idf_files/ASHRAE901_Warehouse_STD2019_Rochester.idf
-
-
-
diff --git a/hub/data/schedules/idf_files/ASHRAE901_ApartmentHighRise_STD2019_Rochester.idf b/hub/data/schedules/idf_files/ASHRAE901_ApartmentHighRise_STD2019_Rochester.idf
deleted file mode 100644
index 34ca274e..00000000
--- a/hub/data/schedules/idf_files/ASHRAE901_ApartmentHighRise_STD2019_Rochester.idf
+++ /dev/null
@@ -1,59444 +0,0 @@
-
-!The DOE Prototype Building Models were developed by Pacific Northwest National Laboratory (PNNL), under contract with the U.S.
-!Department of Energy (DOE). These building models were derived from DOE's Commercial Reference Building Models with modifications
-!based on input from the ASHRAE Standard 90.1 committee, the Advanced Energy Design Guide series, and building industry experts. The
-!prototypes models were developed to quantify energy saving impacts from newly published editions of ASHRAE Standard 90.1, 189.1, IECC,
-!and other energy codes and standards. The basic building descriptions can be found in the Scorecards posted at www.energycodes.gov
-!website. The recommended citation of the prototype models is
-!
-!DOE and PNNL. 2020. Commercial Prototype Building Models, Richland, WA, Pacific Northwest National Laboratory. Available at https://www.energycodes.gov/development/commercial/prototype_models.
-!
-!Detailed descriptions of the prototype model development and addenda modeling strategies can be found in the following reports:
-!DOE, 2020. Preliminary Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2019. Report prepared by Zhang, J., M. Rosenberg, J.
-!Lerond, Y. Xie, Nambia, C., Y. Chen, R. Hart, M. Halverson, D. Maddox, and S. Goel, Richland, WA, Pacific Northwest National Laboratory.
-!
-!Zhang, J., Y. Chen, Y. Xie, M. Rosenberg, R. Hart. Energy and Energy Cost Savings Analysis of the 2018 IECC for Commercial Buildings.
-!2018. PNNL-28125. Richland, WA: Pacific Northwest National Laboratory.
-!
-!DOE. 2017. Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2016. Prepared by Athalye, R.A, M.A. Halverson, M.I. Rosenberg, B. Liu,
-!J. Zhang, R. Hart, V.V. Mendon, S. Goel, Y. Chen, Y. Xie, and M. Zhao, Richland, WA, Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/02202018_Standard_90.1-2016_Determination_TSD.pdf.
-!
-!Zhang, J., Y. Xie, R.A. Athalye, J. Zhuge, M. Rosenberg, R. Hart, and B. Liu. Energy and Energy Cost Savings Analysis of the 2015 IECC
-!for Commercial Buildings. 2015. PNNL-24269 Rev. 1. Richland, WA: Pacific Northwest National
-!Laboratory. https://www.energycodes.gov/sites/default/files/documents/2015_IECC_Commercial_Analysis.pdf.
-!
-!Halverson M.A., M.I. Rosenberg, W. Wang, J. Zhang, V.V. Mendon, R.A. Athalye, Y. Xie, R. Hart, S. Goel, 2014. ANSI/ASHRAE/IES Standard
-!90.1-2013 Determination of Energy Savings: Quantitative Analysis, PNNL-23479. Richland, WA: Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/901-2013_finalCommercialDeterminationQuantitativeAnalysis_TSD_0.pdf.
-!
-!Goel S., R.A. Athalye, W. Wang, J. Zhang, M.I. Rosenberg, Y. Xie, and R. Hart, et al. 2014. Enhancements to ASHRAE Standard 90.1
-!Prototype Building Models. PNNL-23269. Richland, WA: Pacific Northwest National Laboratory. https://www.pnnl.gov/main/publications/external/technical_reports/PNNL-23269.pdf.
-!
-!Zhang J., R.A. Athalye, R. Hart, M.I. Rosenberg, Y. Xie, S. Goel, and V.V. Mendon, et al. 2013. Energy and Energy Cost Savings Analysis
-!of the IECC for Commercial Buildings. PNNL-22760. Richland, WA: Pacific Northwest National Laboratory. http://www.pnnl.gov/main/publications/external/technical_reports/PNNL-22760.pdf.
-!
-!Thornton B.A., M.I. Rosenberg, E.E. Richman, W. Wang, Y. Xie, J. Zhang, H. Cho, VV Mendon, R.A. Athalye, and B. Liu. 2011. Achieving
-!the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010. PNNL-20405. Richland, WA: Pacific Northwest National
-!Laboratory. https://www.energycodes.gov/sites/default/files/documents/BECP_Energy_Cost_Savings_STD2010_May2011_v00.pdf.
-!
-!
-! WeatherFile: USA_MN_Rochester.Intl.AP.726440_TMY3.epw
-
-
-
-! GPARM parameters as input:
-! Case = ASHRAE901_ApartmentHighRise_STD2019_Rochester
-! SelectedCase =
-! slab_gtp = National_ApartmentHighRise_ASHRAE901_STD2016_Zone6A_res_MN-Rochester-MN.gtp
-! avg_oa_tempt_ip = 43.475
-! maxdiff_oa_tempt_ip = 60.3
-! ext_wall_type = SteelFramedWall
-! res_ext_wall_ufactor = 0.278234887
-! roof_type = MetalDeckRoof
-! res_roof_ufactor = 0.181704416
-! roof_emissivity = 0.9
-! roof_solar_absorp = 0.7
-! res_window = Window_U_0.39_SHGC_0.40
-! economizer = NoEconomizer
-! avg_oa_tempt = 6.375
-! maxdiff_oa_tempt = 33.5
-! infil = 0.00056896
-! door_infil = 1.008078792
-! frac_ofpk = 0.131
-! oa_apartment = 0.000294083
-! oa_office = 0.000431773
-! oa_corridor = 0.000304781
-! exterior_light_watts = 7504.3
-! LPD_apartment_hardwired = 6.45834625
-! LPD_apartment_plugin = 2.906255813
-! LPD_office = 7.965293709
-! LPD_corridor = 5.295843925
-! economizer_lockout = LockoutWithHeating
-! wlhp_pump_head = 179045.1073
-! BLDG_ELEVATORS_LIGHTS_FAN_SCH = ELEV_LIGHT_FAN_SCH_ADD_DF
-! BLDG_ELEVATORS_LIGHTS_FAN_POWER = 63
-! EQP_OFF_SCH = EQP_OFF_SCH_ADV
-! pv_generator = no
-! pv_surface_area = 0
-! STD189_overhang = no
-! swh_et = 0.802764686
-! swh_ua = 15.60100708
-! ext_lgt_sch = Exterior_Lgt_ALWAYS_ON
-! AirLoop_Office_DXAC_HeatPump_ERV = No
-! LTG_SCH_SET = LTG_SET_STD2013
-! transformer_size = 75000
-! transformer_eff = 0.986
-! AirLoop_Office_DXAC_HeatPump_ERV_power = 77.3391895
-! wwr = 0.3
-! HTGSETP_OFF_SCH = HTGSETP_OFF_SCH_Yes_Optimum
-! CLGSETP_OFF_SCH = CLGSETP_OFF_SCH_Yes_Optimum
-! pipe_heat_loss = 8167.94
-! skip_EMSprogram = yes
-! BoilerAM = Yes
-! OA_BASED_OPTIMUM_START_EMS = yes
-! Wfile_TMY3 = USA_MN_Rochester.Intl.AP.726440_TMY3.epw
-! loadProfile = No
-! Door_Switch_Enabled_Thermostat_Reset = TRUE
-! receptacle_ctrl_occ_reduction_frac = 0.92575
-! receptacle_ctrl_unocc_reduction_frac = 0.6625
-! SHW_Pump_Head = 29891
-! CodeName = ASHRAE90.1_STD2019
-! CZ_City_Old = Burlington
-! CZ_Label = 6A
-! AddendumCA_2016 = TwoSpeed
-! AirLoop_G_SW_ERV = Yes
-! AirLoop_G_NW_ERV = Yes
-! AirLoop_G_NE_ERV = Yes
-! AirLoop_G_N1_ERV = Yes
-! AirLoop_G_N2_ERV = Yes
-! AirLoop_G_S1_ERV = Yes
-! AirLoop_G_S2_ERV = Yes
-! AirLoop_F2_SW_ERV = Yes
-! AirLoop_F2_NW_ERV = Yes
-! AirLoop_F2_SE_ERV = Yes
-! AirLoop_F2_NE_ERV = Yes
-! AirLoop_F2_N1_ERV = Yes
-! AirLoop_F2_N2_ERV = Yes
-! AirLoop_F2_S1_ERV = Yes
-! AirLoop_F2_S2_ERV = Yes
-! AirLoop_F3_SW_ERV = Yes
-! AirLoop_F3_NW_ERV = Yes
-! AirLoop_F3_SE_ERV = Yes
-! AirLoop_F3_NE_ERV = Yes
-! AirLoop_F3_N1_ERV = Yes
-! AirLoop_F3_N2_ERV = Yes
-! AirLoop_F3_S1_ERV = Yes
-! AirLoop_F3_S2_ERV = Yes
-! AirLoop_F4_SW_ERV = Yes
-! AirLoop_F4_NW_ERV = Yes
-! AirLoop_F4_SE_ERV = Yes
-! AirLoop_F4_NE_ERV = Yes
-! AirLoop_F4_N1_ERV = Yes
-! AirLoop_F4_N2_ERV = Yes
-! AirLoop_F4_S1_ERV = Yes
-! AirLoop_F4_S2_ERV = Yes
-! AirLoop_M_SW_ERV = Yes
-! AirLoop_M_NW_ERV = Yes
-! AirLoop_M_SE_ERV = Yes
-! AirLoop_M_NE_ERV = Yes
-! AirLoop_M_N1_ERV = Yes
-! AirLoop_M_N2_ERV = Yes
-! AirLoop_M_S1_ERV = Yes
-! AirLoop_M_S2_ERV = Yes
-! AirLoop_F6_SW_ERV = Yes
-! AirLoop_F6_NW_ERV = Yes
-! AirLoop_F6_SE_ERV = Yes
-! AirLoop_F6_NE_ERV = Yes
-! AirLoop_F6_N1_ERV = Yes
-! AirLoop_F6_N2_ERV = Yes
-! AirLoop_F6_S1_ERV = Yes
-! AirLoop_F6_S2_ERV = Yes
-! AirLoop_F7_SW_ERV = Yes
-! AirLoop_F7_NW_ERV = Yes
-! AirLoop_F7_SE_ERV = Yes
-! AirLoop_F7_NE_ERV = Yes
-! AirLoop_F7_N1_ERV = Yes
-! AirLoop_F7_N2_ERV = Yes
-! AirLoop_F7_S1_ERV = Yes
-! AirLoop_F7_S2_ERV = Yes
-! AirLoop_F8_SW_ERV = Yes
-! AirLoop_F8_NW_ERV = Yes
-! AirLoop_F8_SE_ERV = Yes
-! AirLoop_F8_NE_ERV = Yes
-! AirLoop_F8_N1_ERV = Yes
-! AirLoop_F8_N2_ERV = Yes
-! AirLoop_F8_S1_ERV = Yes
-! AirLoop_F8_S2_ERV = Yes
-! AirLoop_F9_SW_ERV = Yes
-! AirLoop_F9_NW_ERV = Yes
-! AirLoop_F9_SE_ERV = Yes
-! AirLoop_F9_NE_ERV = Yes
-! AirLoop_F9_N1_ERV = Yes
-! AirLoop_F9_N2_ERV = Yes
-! AirLoop_F9_S1_ERV = Yes
-! AirLoop_F9_S2_ERV = Yes
-! AirLoop_T_SW_ERV = No
-! AirLoop_T_NW_ERV = No
-! AirLoop_T_SE_ERV = Yes
-! AirLoop_T_NE_ERV = Yes
-! AirLoop_T_N1_ERV = Yes
-! AirLoop_T_N2_ERV = Yes
-! AirLoop_T_S1_ERV = Yes
-! AirLoop_T_S2_ERV = Yes
-! AirLoop_G_SW_ERV_power = 68.620847
-! AirLoop_G_NW_ERV_power = 68.620847
-! AirLoop_G_NE_ERV_power = 68.620847
-! AirLoop_G_N1_ERV_power = 68.620847
-! AirLoop_G_N2_ERV_power = 68.620847
-! AirLoop_G_S1_ERV_power = 68.620847
-! AirLoop_G_S2_ERV_power = 68.620847
-! AirLoop_F2_SW_ERV_power = 68.620847
-! AirLoop_F2_NW_ERV_power = 68.620847
-! AirLoop_F2_SE_ERV_power = 68.620847
-! AirLoop_F2_NE_ERV_power = 68.620847
-! AirLoop_F2_N1_ERV_power = 68.620847
-! AirLoop_F2_N2_ERV_power = 68.620847
-! AirLoop_F2_S1_ERV_power = 68.620847
-! AirLoop_F2_S2_ERV_power = 68.620847
-! AirLoop_F3_SW_ERV_power = 68.620847
-! AirLoop_F3_NW_ERV_power = 68.620847
-! AirLoop_F3_SE_ERV_power = 68.620847
-! AirLoop_F3_NE_ERV_power = 68.620847
-! AirLoop_F3_N1_ERV_power = 68.620847
-! AirLoop_F3_N2_ERV_power = 68.620847
-! AirLoop_F3_S1_ERV_power = 68.620847
-! AirLoop_F3_S2_ERV_power = 68.620847
-! AirLoop_F4_SW_ERV_power = 68.620847
-! AirLoop_F4_NW_ERV_power = 68.620847
-! AirLoop_F4_SE_ERV_power = 68.620847
-! AirLoop_F4_NE_ERV_power = 68.620847
-! AirLoop_F4_N1_ERV_power = 68.620847
-! AirLoop_F4_N2_ERV_power = 68.620847
-! AirLoop_F4_S1_ERV_power = 68.620847
-! AirLoop_F4_S2_ERV_power = 68.620847
-! AirLoop_M_SW_ERV_power = 68.620847
-! AirLoop_M_NW_ERV_power = 68.620847
-! AirLoop_M_SE_ERV_power = 68.620847
-! AirLoop_M_NE_ERV_power = 68.620847
-! AirLoop_M_N1_ERV_power = 68.620847
-! AirLoop_M_N2_ERV_power = 68.620847
-! AirLoop_M_S1_ERV_power = 68.620847
-! AirLoop_M_S2_ERV_power = 68.620847
-! AirLoop_F6_SW_ERV_power = 68.620847
-! AirLoop_F6_NW_ERV_power = 68.620847
-! AirLoop_F6_SE_ERV_power = 68.620847
-! AirLoop_F6_NE_ERV_power = 68.620847
-! AirLoop_F6_N1_ERV_power = 68.620847
-! AirLoop_F6_N2_ERV_power = 68.620847
-! AirLoop_F6_S1_ERV_power = 68.620847
-! AirLoop_F6_S2_ERV_power = 68.620847
-! AirLoop_F7_SW_ERV_power = 68.620847
-! AirLoop_F7_NW_ERV_power = 68.620847
-! AirLoop_F7_SE_ERV_power = 68.620847
-! AirLoop_F7_NE_ERV_power = 68.620847
-! AirLoop_F7_N1_ERV_power = 68.620847
-! AirLoop_F7_N2_ERV_power = 68.620847
-! AirLoop_F7_S1_ERV_power = 68.620847
-! AirLoop_F7_S2_ERV_power = 68.620847
-! AirLoop_F8_SW_ERV_power = 68.620847
-! AirLoop_F8_NW_ERV_power = 68.620847
-! AirLoop_F8_SE_ERV_power = 68.620847
-! AirLoop_F8_NE_ERV_power = 68.620847
-! AirLoop_F8_N1_ERV_power = 68.620847
-! AirLoop_F8_N2_ERV_power = 68.620847
-! AirLoop_F8_S1_ERV_power = 68.620847
-! AirLoop_F8_S2_ERV_power = 68.620847
-! AirLoop_F9_SW_ERV_power = 68.620847
-! AirLoop_F9_NW_ERV_power = 68.620847
-! AirLoop_F9_SE_ERV_power = 68.620847
-! AirLoop_F9_NE_ERV_power = 68.620847
-! AirLoop_F9_N1_ERV_power = 68.620847
-! AirLoop_F9_N2_ERV_power = 68.620847
-! AirLoop_F9_S1_ERV_power = 68.620847
-! AirLoop_F9_S2_ERV_power = 68.620847
-! AirLoop_T_SW_ERV_power = 68.620847
-! AirLoop_T_NW_ERV_power = 68.620847
-! AirLoop_T_SE_ERV_power = 68.620847
-! AirLoop_T_NE_ERV_power = 68.620847
-! AirLoop_T_N1_ERV_power = 68.620847
-! AirLoop_T_N2_ERV_power = 68.620847
-! AirLoop_T_S1_ERV_power = 68.620847
-! AirLoop_T_S2_ERV_power = 68.620847
-! office_standby_mode = Yes
-! res_window_u_factor = 0.36
-! res_window_shgc = 0.37
-! resLSG = 1.1
-! AnalysisPurpose = ProgressIndicator
-! AnalysisCodeName = ASHRAE901
-! AnalysisCodeYear = 2019
-! AnalysisAmendment = NoneAmend
-! AnalysisPrototype = ApartmentHighRise
-! AnalysisScope = National
-! AnalysisState = National
-! AnalysisClimateZone = 6A
-! AnalysisCity = USA_MN_Rochester
-! var_Ffactor_IP = 0.434
-! var_Cfactor_IP = 0.063
-! APT_SWH_flow = 3.66e-06
-
-
-
-
-! specify overhang_pf for 1891 codes
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: VERSION ===========
-
-
-
- Version,9.0;
-
-!- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL ===========
-
- SimulationControl,
- Yes, !- Do Zone Sizing Calculation
- Yes, !- Do System Sizing Calculation
- Yes, !- Do Plant Sizing Calculation
-No, !- Run Simulation for Sizing Periods
-YES; !- Run Simulation for Weather File Run Periods
-
-!- =========== ALL OBJECTS IN CLASS: BUILDING ===========
-
- Building,
- ApartmentHighRise, !- Name
- 0.0000, !- North Axis {deg}
- City, !- Terrain
- 0.0400, !- Loads Convergence Tolerance Value
- 0.2000, !- Temperature Convergence Tolerance Value {deltaC}
- FullInteriorAndExterior, !- Solar Distribution
- 25, !- Maximum Number of Warmup Days
- 6; !- Minimum Number of Warmup Days
-
-!- =========== ALL OBJECTS IN CLASS: SHADOWCALCULATION ===========
-
-
- ShadowCalculation,
- AverageOverDaysInFrequency, !- Calculation Method
- 30, !- Calculation Frequency
- 15000; !- Maximum Figures in Shadow Overlap Calculations
-
-!- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:INSIDE ===========
-
-
- SurfaceConvectionAlgorithm:Inside,TARP;
-
-!- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:OUTSIDE ===========
-
-
- SurfaceConvectionAlgorithm:Outside,DOE-2;
-
-!- =========== ALL OBJECTS IN CLASS: HEATBALANCEALGORITHM ===========
-
-
- HeatBalanceAlgorithm,ConductionTransferFunction,200.0000;
-
-!- =========== ALL OBJECTS IN CLASS: TIMESTEP ===========
-
-
- Timestep,6;
-
-!- =========== ALL OBJECTS IN CLASS: CONVERGENCELIMITS ===========
-
-
- ConvergenceLimits,
- 1, !- Minimum System Timestep {minutes}
- 20; !- Maximum HVAC Iterations
-
-!- =========== ALL OBJECTS IN CLASS: LOCATION ===========
-! Site:Location and design-day objects created by:
-! ../../_p.bin/ddy2idf /projects/bigsim/weather/EnergyPlus/tmy3.new/all/USA_MN_Rochester.Intl.AP.726440_TMY3.ddy
-!
-Site:Location,
- Rochester International Arpt_MN_USA Design_Conditions, !- Site:Location Name
- 43.90, !- Latitude {N+ S-}
- -92.50, !- Longitude {W- E+}
- -6.00, !- Time Zone Relative to GMT {GMT+/-}
- 398.00; !- Elevation {m}
-
-SizingPeriod:DesignDay,
- Rochester International Arpt Ann Htg 99.6% Condns DB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -26.2, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- -26.2, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily WetBulb Temperature Range {deltaC}
- 96634., !- Barometric Pressure {Pa}
- 5.7, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 310, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
-SizingPeriod:DesignDay,
- Rochester International Arpt Ann Clg .4% Condns DB=>MWB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 31.2, !- Maximum Dry-Bulb Temperature {C}
- 10.6, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 23.1, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily WetBulb Temperature Range {deltaC}
- 96634., !- Barometric Pressure {Pa}
- 6.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 200, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.404, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 2.226; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
-
-
-!- =========== ALL OBJECTS IN CLASS: RUNPERIOD ===========
-
-
- RunPeriod,
- , !- Name
- 1, !- Begin Month
- 1, !- Begin Day of Month
- , !- Begin Year
- 12, !- End Month
- 31, !- End Day of Month
- , !- End Year
- Sunday, !- Day of Week for Start Day
- No, !- Use Weather File Holidays and Special Days
- No, !- Use Weather File Daylight Saving Period
- No, !- Apply Weekend Holiday Rule
- Yes, !- Use Weather File Rain Indicators
- Yes; !- Use Weather File Snow Indicators
-
-!- =========== ALL OBJECTS IN CLASS: RUNPERIODCONTROL:SPECIALDAYS ===========
-
-! US National Holidays
-
-
- RunPeriodControl:SpecialDays,
- New Years Day, !- Name
- January 1, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Veterans Day, !- Name
- November 11, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Christmas, !- Name
- December 25, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Independence Day, !- Name
- July 4, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- MLK Day, !- Name
- 3rd Monday in January, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Presidents Day, !- Name
- 3rd Monday in February, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Memorial Day, !- Name
- Last Monday in May, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Labor Day, !- Name
- 1st Monday in September, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Columbus Day, !- Name
- 2nd Monday in October, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-
-
- RunPeriodControl:SpecialDays,
- Thanksgiving, !- Name
- 4th Thursday in November,!- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-!- =========== ALL OBJECTS IN CLASS: RUNPERIODCONTROL:DAYLIGHTSAVINGTIME ===========
-
-! Daylight Saving Period in US
-
- RunPeriodControl:DaylightSavingTime,
- 2nd Sunday in March, !- Start Date
- 1st Sunday in November; !- End Date
-
-!- =========== ALL OBJECTS IN CLASS: SITE:WATERMAINSTEMPERATURE ===========
-
-
- Site:WaterMainsTemperature,
- CORRELATION, !- Calculation Method
- , !- Temperature Schedule Name
-6.375, !- Annual average outdoor air temperature {C}
-33.5; !- Maximum difference in monthly average outdoor air temperatures {C}
-
-
-
-
-!
-!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR ===========
-
- Material,
- Std Wood 6inch, !- Name
- MediumSmooth, !- Roughness
- 0.15, !- Thickness {m}
- 0.12, !- Conductivity {W/m-K}
- 540.0000, !- Density {kg/m3}
- 1210, !- Specific Heat {J/kg-K}
- 0.9000000, !- Thermal Absorptance
- 0.7000000, !- Solar Absorptance
- 0.7000000; !- Visible Absorptance
-
- Material,
- AC02 Acoustic Ceiling, !- Name
- MediumSmooth, !- Roughness
- 1.2700000E-02, !- Thickness {m}
- 5.7000000E-02, !- Conductivity {W/m-K}
- 288.0000, !- Density {kg/m3}
- 1339.000, !- Specific Heat {J/kg-K}
- 0.9000000, !- Thermal Absorptance
- 0.7000000, !- Solar Absorptance
- 0.2000000; !- Visible Absorptance
-
- Material,
- F07 25mm stucco, !- Name
- Smooth, !- Roughness
- 0.0254, !- Thickness {m}
- 0.72, !- Conductivity {W/m-K}
- 1856, !- Density {kg/m3}
- 840, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material,
- F08 Metal surface, !- Name
- Smooth, !- Roughness
- 0.0008, !- Thickness {m}
- 45.28, !- Conductivity {W/m-K}
- 7824, !- Density {kg/m3}
- 500; !- Specific Heat {J/kg-K}
-
- Material,
- F08 Metal roof surface, !- Name
- Smooth, !- Roughness
- 0.0008, !- Thickness {m}
- 45.28, !- Conductivity {W/m-K}
- 7824, !- Density {kg/m3}
- 500, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- F12 Asphalt shingles, !- Name
- VeryRough, !- Roughness
- 0.0032, !- Thickness {m}
- 0.04, !- Conductivity {W/m-K}
- 1120, !- Density {kg/m3}
- 1260, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- F13 Built-up roofing, !- Name
- Rough, !- Roughness
- 0.0095, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 1120, !- Density {kg/m3}
- 1460, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- G01 13mm gypsum board, !- Name
- Smooth, !- Roughness
- 0.0127, !- Thickness {m}
- 0.1600, !- Conductivity {W/m-K}
- 800.0000, !- Density {kg/m3}
- 1090.0000, !- Specific Heat {J/kg-K}
- 0.9000, !- Absorptance:Thermal
- 0.7000, !- Absorptance:Solar
- 0.5000; !- Absorptance:Visible
-
- Material,
- G01 16mm gypsum board, !- Name
- MediumSmooth, !- Roughness
- 0.0159, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 1090; !- Specific Heat {J/kg-K}
-
- Material,
- G02 16mm plywood, !- Name
- Smooth, !- Roughness
- 0.0159, !- Thickness {m}
- 0.12, !- Conductivity {W/m-K}
- 544, !- Density {kg/m3}
- 1210; !- Specific Heat {J/kg-K}
-
- Material,
- M14 150mm heavyweight concrete roof, !- Name
- MediumRough, !- Roughness
- 0.1524, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
-
- Material,
- 100mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1016, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
-
- Material,
- 200mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 100mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1016, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 150mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1524, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 200mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- M10 200mm concrete block wall, !- Name
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 0.72, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- M10 200mm concrete block basement wall, !- Name
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 1.326, !- Conductivity {W/m-K}
- 1842, !- Density {kg/m3}
- 912; !- Specific Heat {J/kg-K}
-
-
-
-
-
-
-
- Material:NoMass,
- CP02 CARPET PAD, !- Name
- VeryRough, !- Roughness
- 0.21648, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.8; !- Visible Absorptance
-
-
- Material:NoMass,
- Air_Wall_Material, !- Name
- Rough, !- Roughness
- 0.2079491, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7; !- Solar Absorptance
-
-
- Material:NoMass,
- Nonres_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Absorptance:Thermal
- 0.7, !- Absorptance:Solar
- 0.7; !- Absorptance:Visible
-
- Material:NoMass,
- Res_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 5.30668495131472,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
- Material:NoMass,
- Nonres_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Res_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 3.21036415428069,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
- Material:NoMass,
- Nonres_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Res_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
-
-
-
- Material:NoMass,
- Std Opaque Door Panel, !- Name
- MediumRough, !- Roughness
- 0.123456790123457, !- (corresponds to default RSI-0.12327 or R-0.7) Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION ===========
-
- Construction,
- InteriorFurnishings, !- Name
- Std Wood 6inch; !- Outside Layer
-
- Construction,
- Air_Wall, !- Name
- Air_Wall_Material; !- Outside Layer
-
- Construction,
- DropCeiling, !- Name
- AC02 Acoustic Ceiling; !- Outside Layer
-
- Construction,
- OpaqueDoor, !- Name
- Std Opaque Door Panel; !- Outside Layer
-
- Construction,
- AtticRoofDeck, !- Name
- F12 Asphalt shingles, !- Outside Layer
- G02 16mm plywood; !- Layer 2
-
- Construction,
- int_wall, !- Name
- G01 13mm gypsum board, !- Outside Layer
- G01 13mm gypsum board; !- Layer 2
-
- Construction,
- ext_slab_8in_with_carpet,!- Name
- 200mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- ext_slab_8in, !- Name
- 200mm Normalweight concrete floor; !- Outside Layer
-
- Construction,
- ext_slab_6in_with_carpet,!- Name
- 150mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- ext_slab_6in, !- Name
- 150mm Normalweight concrete floor; !- Outside Layer
-
- Construction,
- int_slab_floor, !- Name
- 100mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- int_slab_ceiling, !- Name
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor; !- Layer 2
-
- Construction,
- basement_wall, !- Name
- M10 200mm concrete block basement wall; !- Outside Layer
-
- Construction,
- int_wood_floor, !- Name
- AC02 Acoustic Ceiling, !- Outside Layer
- G02 16mm plywood, !- Layer 2
- CP02 CARPET PAD; !- Layer 3
-
- Construction,
- ext_soffit_floor, !- Name
- G02 16mm plywood; !- Outside Layer
-
- Construction,
- nonres_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Nonres_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
- Construction,
- res_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Res_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
- Construction,
- semiheated_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Semiheated_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
-
-
- Construction,
- nonres_ext_wall, !- Name
- F07 25mm stucco, !- Outside Layer
- G01 16mm gypsum board, !- Layer #2
- Nonres_Exterior_Wall_Insulation, !- Layer #3
- G01 16mm gypsum board; !- Layer #4
-
-
- Construction,
- res_ext_wall, !- Name
- F07 25mm stucco, !- Outside Layer
- G01 16mm gypsum board, !- Layer #1
- Res_Exterior_Wall_Insulation, !- Layer #2
- G01 16mm gypsum board; !- Layer #3
-
-
- Construction,
- semiheated_ext_wall, !- Name
- F07 25mm stucco, !- Outside Layer
- G01 16mm gypsum board, !- Layer #1
- Semiheated_Exterior_Wall_Insulation, !- Layer #2
- G01 16mm gypsum board; !- Layer #3
-
-
- Construction,
- nonres_floor, !- Name
- Nonres_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- res_floor, !- Name
- Res_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- semiheated_floor, !- Name
- Semiheated_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- nonres_floor_ceiling, !- Name - reverse ordered layers for nonres_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Nonres_Floor_Insulation; !- Layer #2
-
- Construction,
- res_floor_ceiling, !- Name - reverse ordered layers for res_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Res_Floor_Insulation; !- Layer #2
-
- Construction,
- semiheated_floor_ceiling, !- Name - reverse ordered layers for semiheated_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Semiheated_Floor_Insulation; !- Layer #2
-
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: Site:GroundTemperature:FCfactorMethod ===========
-
-Site:GroundTemperature:FCfactorMethod,
-7.4, !- January Ground Temperature {C}
--0.0, !- February Ground Temperature {C}
--7.6, !- March Ground Temperature {C}
--12.6, !- April Ground Temperature {C}
--7.7, !- May Ground Temperature {C}
-0.3, !- June Ground Temperature {C}
-7.0, !- July Ground Temperature {C}
-14.2, !- August Ground Temperature {C}
-19.2, !- September Ground Temperature {C}
-20.9, !- October Ground Temperature {C}
-20.0, !- November Ground Temperature {C}
-15.4; !- December Ground Temperature {C}
-
-
-
-!- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM ===========
-
-WindowMaterial:SimpleGlazingSystem,
- Res Window Glazing Layer, !- Name
- 2.0441736, !- U-Factor {W/m2-K}
- 0.37, !- Solar Heat Gain Coefficient
- 0.407; !- Visible Transmittance
-
-
-Construction,
- ResWindow_U__SHGC_0.37, !- Name
- Res Window Glazing Layer; !- Outside Layer
-
-!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS ===========
- ScheduleTypeLimits,
- On/Off, !- Name
- 0, !- Lower Limit Value
- 1, !- Upper Limit Value
- Discrete; !- Numeric Type
-
- ScheduleTypeLimits,
- Fraction, !- Name
- 0, !- Lower Limit Value
- 1, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- Temperature, !- Name
- -100, !- Lower Limit Value
- 100, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- Any Number; !- Name
-
- ScheduleTypeLimits,
- Control Type, !- Name
- 0, !- Lower Limit Value
- 4, !- Upper Limit Value
- Discrete; !- Numeric Type
-
- ScheduleTypeLimits,
- COMPACT HVAC Any Number; !- Name
-
-!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT ===========
-
- Schedule:Compact,
- OCC_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 7:00,1.0, !- Field 3
- Until: 8:00,0.85, !- Field 5
- Until: 9:00,0.39, !- Field 7
- Until: 16:00,0.25, !- Field 9
- Until: 17:00,0.3, !- Field 11
- Until: 18:00,0.52, !- Field 13
- Until: 21:00,0.87, !- Field 15
- Until: 24:00,1.0; !- Field 17
-
- Schedule:Compact,
- OCC_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.0, !- Field 3
- Until: 12:00,1.0, !- Field 5
- Until: 13:00,0.5, !- Field 7
- Until: 17:00,1.0, !- Field 9
- Until: 24:00,0.0, !- Field 11
- For AllOtherDays, !- Field 13
- Until: 24:00,0.0; !- Field 14
-
-
-
-
- Schedule:Compact,
- OCC_OFF_w_SB_SCH, !-Name
- Fraction, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 0,
- Until: 02:00, 0,
- Until: 03:00, 0,
- Until: 04:00, 0,
- Until: 05:00, 0,
- Until: 06:00, 0,
- Until: 07:00, 0,
- Until: 08:00, 0,
- Until: 09:00, 1,
- Until: 10:00, 1,
- Until: 11:00, 1,
- Until: 12:00, 1,
- Until: 13:00, 0,
- Until: 14:00, 1,
- Until: 15:00, 0,
- Until: 16:00, 1,
- Until: 17:00, 1,
- Until: 18:00, 0,
- Until: 19:00, 0,
- Until: 20:00, 0,
- Until: 21:00, 0,
- Until: 22:00, 0,
- Until: 23:00, 0,
- Until: 24:00, 0,
- For: AllOtherDays,
- Until: 01:00, 0,
- Until: 02:00, 0,
- Until: 03:00, 0,
- Until: 04:00, 0,
- Until: 05:00, 0,
- Until: 06:00, 0,
- Until: 07:00, 0,
- Until: 08:00, 0,
- Until: 09:00, 0,
- Until: 10:00, 0,
- Until: 11:00, 0,
- Until: 12:00, 0,
- Until: 13:00, 0,
- Until: 14:00, 0,
- Until: 15:00, 0,
- Until: 16:00, 0,
- Until: 17:00, 0,
- Until: 18:00, 0,
- Until: 19:00, 0,
- Until: 20:00, 0,
- Until: 21:00, 0,
- Until: 22:00, 0,
- Until: 23:00, 0,
- Until: 24:00, 0;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Schedule:Compact,
- LTG_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 4:00,0.011316031, !- Field 3
- Until: 5:00,0.033948092, !- Field 5
- Until: 6:00,0.0735542, !- Field 7
- Until: 7:00,0.079212215, !- Field 9
- Until: 8:00,0.0735542, !- Field 11
- Until: 9:00,0.033948092, !- Field 13
- Until: 15:00,0.022632061,!- Field 15
- Until: 16:00,0.039606108,!- Field 17
- Until: 17:00,0.079212215,!- Field 19
- Until: 18:00,0.113160307,!- Field 21
- Until: 19:00,0.152766415,!- Field 23
- Until: 21:00,0.181056492,!- Field 25
- Until: 22:00,0.124476338,!- Field 27
- Until: 23:00,0.067896184,!- Field 29
- Until: 24:00,0.028290077;!- Field 31
-
- Schedule:Compact,
- LTG_COR_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.576875; !- Field 3
-
- Schedule:Compact,
- LTG_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 2
- Until: 24:00,1, !- Field 3
- For: WinterDesignDay, !- Field 5
- Until: 24:00,0, !- Field 6
- For: Weekdays, !- Field 8
- Until: 8:00,0.18, !- Field 9
- Until: 12:00,0.76932, !- Field 11
- Until: 13:00,0.68384, !- Field 13
- Until: 17:00,0.76932, !- Field 15
- Until: 24:00,0.18, !- Field 17
- For: AllOtherDays, !- Field 19
- Until: 24:00,0.18; !- Field 20
-
-
-
-
-
-
- Schedule:Compact,
- EQP_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 1:00,0.45, !- Field 3
- Until: 2:00,0.41, !- Field 5
- Until: 3:00,0.39, !- Field 7
- Until: 5:00,0.38, !- Field 9
- Until: 6:00,0.43, !- Field 11
- Until: 7:00,0.54, !- Field 13
- Until: 8:00,0.65, !- Field 15
- Until: 9:00,0.66, !- Field 17
- Until: 10:00,0.67, !- Field 19
- Until: 11:00,0.69, !- Field 21
- Until: 12:00,0.70, !- Field 23
- Until: 13:00,0.69, !- Field 25
- Until: 14:00,0.66, !- Field 27
- Until: 15:00,0.65, !- Field 29
- Until: 16:00,0.68, !- Field 31
- Until: 17:00,0.80, !- Field 33
- Until: 19:00,1.0, !- Field 35
- Until: 20:00,0.93, !- Field 37
- Until: 21:00,0.89, !- Field 39
- Until: 22:00,0.85, !- Field 41
- Until: 23:00,0.71, !- Field 43
- Until: 24:00,0.58; !- Field 45
-
-
-
- Schedule:Compact,
- EQP_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.218625, !- Field 3
- Until: 8:00,0.33125, !- Field 5
- Until: 12:00,0.92575, !- Field 7
- Until: 13:00,0.870205, !- Field 9
- Until: 17:00,0.92575, !- Field 11
- Until: 18:00,0.33125, !- Field 13
- Until: 24:00,0.218625, !- Field 15
- For AllOtherDays, !- Field 17
- Until: 24:00,0.218625; !- Field 18
-
- Schedule:Compact,
- INF_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- INF_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- INF_COR_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- INFIL_Door_Opening_SCH, !- Name
- fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 06:00,0.0, !- Field 3
- Until: 07:00,0.131, !- Field 5
- Until: 08:00,1.0, !- Field 7
- Until: 17:00,0.131, !- Field 9
- Until: 18:00,1.0, !- Field 11
- Until: 22:00,0.131, !- Field 13
- Until: 24:00,0.0; !- Field 15
-
- Schedule:Compact,
- HTGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00,21.7; !- Field 3
-
- Schedule:Compact,
- CLGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00,24.4; !- Field 3
-
-Schedule:Compact,
- S HTGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 21.7; !- Field 4
-
-Schedule:Compact,
- S CLGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 24.4; !- Field 4
-
-Schedule:Compact,
- N HTGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 21.7; !- Field 4
-
-Schedule:Compact,
- N CLGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 24.4; !- Field 4
-
- Schedule:Compact,
- HTGSETP_DESIGN_OFF_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00,21.1; !- Field 3
-
- Schedule:Compact,
- CLGSETP_DESIGN_OFF_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00,23.9; !- Field 3
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_No_Optimum, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,15.6, !- Field 3
- UNTIL: 8:00,18.3, !- Field 5
- UNTIL:17:00,21.1, !- Field 7
- UNTIL: 18:00,18.3, !- Field 9
- UNTIL: 24:00,15.6, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,15.6, !- Field 14
- UNTIL: 8:00,21.1, !- Field 16
- UNTIL:17:00,21.1, !- Field 18
- UNTIL: 18:00,18.3, !- Field 20
- UNTIL: 24:00,15.6, !- Field 22
- FOR: AllOtherDays, !- Field 24
- UNTIL: 24:00,15.6; !- Field 25
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_Yes_Optimum, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,15.6, !- Field 3
- UNTIL: 8:00,18.3, !- Field 5
- UNTIL: 17:00,21.1, !- Field 7
- UNTIL: 18:00,18.3, !- Field 9
- UNTIL: 24:00,15.6, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,15.6, !- Field 14
- UNTIL: 8:00,17.8, !- Field 16
- UNTIL: 9:00,20.0, !- Field 18
- UNTIL: 17:00,21.1, !- Field 20
- UNTIL: 18:00,18.3, !- Field 22
- UNTIL: 24:00,15.6, !- Field 24
- FOR: AllOtherDays, !- Field 26
- UNTIL: 24:00,15.6; !- Field 27
-
-
-
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_Yes_Optimum_w_SB, !-Name
- Temperature, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 15.6,
- Until: 02:00, 15.6,
- Until: 03:00, 15.6,
- Until: 04:00, 15.6,
- Until: 05:00, 15.6,
- Until: 06:00, 15.6,
- Until: 07:00, 15.6,
- Until: 08:00, 17.8,
- Until: 09:00, 20,
- Until: 10:00, 21.1,
- Until: 11:00, 21.1,
- Until: 12:00, 21.1,
- Until: 13:00, 20.5444444444444,
- Until: 14:00, 21.1,
- Until: 15:00, 20.5444444444444,
- Until: 16:00, 21.1,
- Until: 17:00, 21.1,
- Until: 18:00, 18.3,
- Until: 19:00, 15.6,
- Until: 20:00, 15.6,
- Until: 21:00, 15.6,
- Until: 22:00, 15.6,
- Until: 23:00, 15.6,
- Until: 24:00, 15.6,
- For: WinterDesignDay SummerDesignDay,
- Until: 7:00,15.6,
- Until: 8:00,18.3,
- Until:17:00,21.1,
- Until: 18:00,18.3,
- Until: 24:00,15.6,
- For: AllOtherDays,
- Until: 24:00,15.6;
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_Yes_Optimum_Original, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,15.6, !- Field 3
- UNTIL: 8:00,18.3, !- Field 5
- UNTIL: 17:00,21.1, !- Field 7
- UNTIL: 18:00,18.3, !- Field 9
- UNTIL: 24:00,15.6, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,15.6, !- Field 14
- UNTIL: 8:00,17.8, !- Field 16
- UNTIL: 9:00,20.0, !- Field 18
- UNTIL: 17:00,21.1, !- Field 20
- UNTIL: 18:00,18.3, !- Field 22
- UNTIL: 24:00,15.6, !- Field 24
- FOR: AllOtherDays, !- Field 26
- UNTIL: 24:00,15.6; !- Field 27
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_No_Optimum, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL:17:00,23.9, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,29.4, !- Field 14
- UNTIL: 8:00,23.9, !- Field 16
- UNTIL:17:00,23.9, !- Field 18
- UNTIL: 18:00,26.7, !- Field 20
- UNTIL: 24:00,29.4, !- Field 22
- FOR: AllOtherDays, !- Field 24
- UNTIL: 24:00,29.4; !- Field 25
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_Yes_Optimum, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL:17:00,23.9, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,29.4, !- Field 14
- UNTIL: 8:00,27.8, !- Field 16
- UNTIL: 9:00,25.6, !- Field 18
- UNTIL: 17:00,23.9, !- Field 20
- UNTIL: 18:00,26.7, !- Field 22
- UNTIL: 24:00,29.4, !- Field 24
- FOR: AllOtherDays, !- Field 26
- UNTIL: 24:00,29.4; !- Field 27
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_Yes_Optimum_w_SB, !-Name
- Temperature, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 29.4,
- Until: 02:00, 29.4,
- Until: 03:00, 29.4,
- Until: 04:00, 29.4,
- Until: 05:00, 29.4,
- Until: 06:00, 29.4,
- Until: 07:00, 29.4,
- Until: 08:00, 27.8,
- Until: 09:00, 25.6,
- Until: 10:00, 23.9,
- Until: 11:00, 23.9,
- Until: 12:00, 23.9,
- Until: 13:00, 24.4555555555556,
- Until: 14:00, 23.9,
- Until: 15:00, 24.4555555555556,
- Until: 16:00, 23.9,
- Until: 17:00, 23.9,
- Until: 18:00, 26.7,
- Until: 19:00, 29.4,
- Until: 20:00, 29.4,
- Until: 21:00, 29.4,
- Until: 22:00, 29.4,
- Until: 23:00, 29.4,
- Until: 24:00, 29.4,
- For: WinterDesignDay SummerDesignDay,
- Until: 7:00,29.4,
- Until: 8:00,26.7,
- Until:17:00,23.9,
- Until: 18:00,26.7,
- Until: 24:00,29.4,
- For: AllOtherDays,
- Until: 24:00,29.4;
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_Yes_Optimum_Original, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL:17:00,23.9, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,29.4, !- Field 14
- UNTIL: 8:00,27.8, !- Field 16
- UNTIL: 9:00,25.6, !- Field 18
- UNTIL: 17:00,23.9, !- Field 20
- UNTIL: 18:00,26.7, !- Field 22
- UNTIL: 24:00,29.4, !- Field 24
- FOR: AllOtherDays, !- Field 26
- UNTIL: 24:00,29.4; !- Field 27
-
-
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_No_Setback, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL:17:00,23.9, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,23.9, !- Field 14
- UNTIL: 8:00,23.9, !- Field 16
- UNTIL:17:00,23.9, !- Field 18
- UNTIL: 18:00,23.9, !- Field 20
- UNTIL: 24:00,23.9, !- Field 22
- FOR: AllOtherDays, !- Field 24
- UNTIL: 24:00,23.9; !- Field 25
-
- Schedule:Compact,
- Activity Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,95; !- Field 3
-
- Schedule:Compact,
- All Off, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.0; !- Field 3
-
- Schedule:Compact,
- All On, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- AllOn_Except_DD, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 1
- Until: 24:00,0, !- Field 2
- For: WinterDesignDay, !- Field 3
- Until: 24:00,0, !- Field 4
- For: AllOtherDays, !- Field 5
- Until: 24:00,1; !- Field 6
-
- Schedule:Compact,
- Exterior_Lgt_ALWAYS_ON, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ALWAYS_ON, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 1, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ZONE CONTROL TYPE SCHED, !- Name
- Control Type, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 5
- Until: 24:00,2, !- Field 6
- For: WinterDesignDay, !- Field 8
- Until: 24:00,1, !- Field 9
- For: Weekdays Weekends Holidays Customday1 Customday2 AllOtherDays, !- Field 2
- Until: 24:00,4; !- Field 3
-
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 4, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,4; !- Field 3
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 0, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0; !- Field 3
-
-
- Schedule:Compact,
- SHWSys1-Loop-Temp-Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60; !- Field 3
-
- Schedule:Compact,
- SHWSys1 Water Heater Setpoint Temperature Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- SHWSys1 Water Heater Ambient Temperature Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,22.0; !- Field 3
-
- Schedule:Compact,
- SHW TARGET TEMP SCHED, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- SHW SUPPLY TEMP SCHED, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- SHW Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- SHW Sensible fract sched,!- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PlantOnSched, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- Ambient Temp Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,22.0; !- Field 3
-
- Schedule:Compact,
- APT_DHW_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 1:00,0.08, !- Field 3
- UNTIL: 2:00,0.04, !- Field 5
- UNTIL: 3:00,0.01, !- Field 7
- UNTIL: 4:00,0.01, !- Field 9
- UNTIL: 5:00,0.04, !- Field 11
- UNTIL: 6:00,0.27, !- Field 13
- UNTIL: 7:00,0.94, !- Field 15
- UNTIL: 8:00,1.00, !- Field 17
- UNTIL: 9:00,0.96, !- Field 19
- UNTIL: 10:00,0.84, !- Field 21
- UNTIL: 11:00,0.76, !- Field 23
- UNTIL: 12:00,0.61, !- Field 25
- UNTIL: 13:00,0.53, !- Field 27
- UNTIL: 14:00,0.47, !- Field 29
- UNTIL: 15:00,0.41, !- Field 31
- UNTIL: 16:00,0.47, !- Field 33
- UNTIL: 17:00,0.55, !- Field 35
- UNTIL: 18:00,0.73, !- Field 37
- UNTIL: 19:00,0.86, !- Field 39
- UNTIL: 20:00,0.82, !- Field 41
- UNTIL: 21:00,0.75, !- Field 43
- UNTIL: 22:00,0.61, !- Field 45
- UNTIL: 23:00,0.53, !- Field 47
- UNTIL: 24:00,0.29; !- Field 49
-
- Schedule:Compact,
- SupplyFanSch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- SupplyFan_w_SB_Sch, !-Name
- Fraction, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 1,
- Until: 02:00, 1,
- Until: 03:00, 1,
- Until: 04:00, 1,
- Until: 05:00, 1,
- Until: 06:00, 1,
- Until: 07:00, 1,
- Until: 08:00, 1,
- Until: 09:00, 1,
- Until: 10:00, 1,
- Until: 11:00, 1,
- Until: 12:00, 1,
- Until: 13:00, 0,
- Until: 14:00, 1,
- Until: 15:00, 0,
- Until: 16:00, 1,
- Until: 17:00, 1,
- Until: 18:00, 1,
- Until: 19:00, 1,
- Until: 20:00, 1,
- Until: 21:00, 1,
- Until: 22:00, 1,
- Until: 23:00, 1,
- Until: 24:00, 1,
- For: AllOtherDays,
- Until: 01:00, 1,
- Until: 02:00, 1,
- Until: 03:00, 1,
- Until: 04:00, 1,
- Until: 05:00, 1,
- Until: 06:00, 1,
- Until: 07:00, 1,
- Until: 08:00, 1,
- Until: 09:00, 1,
- Until: 10:00, 1,
- Until: 11:00, 1,
- Until: 12:00, 1,
- Until: 13:00, 1,
- Until: 14:00, 1,
- Until: 15:00, 1,
- Until: 16:00, 1,
- Until: 17:00, 1,
- Until: 18:00, 1,
- Until: 19:00, 1,
- Until: 20:00, 1,
- Until: 21:00, 1,
- Until: 22:00, 1,
- Until: 23:00, 1,
- Until: 24:00, 1;
-
- Schedule:Compact,
- PLANTHEATINGONSCHED, !- Name
- FRACTION, !- Schedule Type Limits Name
- Through: 5/8, !- Field 1
- For: Alldays, !- Field 2
- Until: 24:00,1.00, !- Field 3
- Through: 10/17, !- Field 5
- For: Alldays, !- Field 6
- Until: 24:00,0.00, !- Field 7
- Through: 12/31, !- Field 9
- For: Alldays, !- Field 10
- Until: 24:00,1.00; !- Field 11
-
- Schedule:Compact,
- PLANTCOOLINGONSCHED, !- Name
- FRACTION, !- Schedule Type Limits Name
- Through: 5/8, !- Field 1
- For: Alldays, !- Field 2
- Until: 24:00,0.00, !- Field 3
- Through: 10/17, !- Field 5
- For: Alldays, !- Field 6
- Until: 24:00,1.00, !- Field 7
- Through: 12/31, !- Field 9
- For: Alldays, !- Field 10
- Until: 24:00,0.00; !- Field 11
-
- Schedule:Compact,
- PLANT LOOP HIGH TEMP SCHEDULE, !- Name
- TEMPERATURE, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Alldays, !- Field 2
- Until: 24:00,30; !- Field 3
-
- Schedule:Compact,
- PLANT LOOP LOW TEMP SCHEDULE, !- Name
- TEMPERATURE, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Alldays, !- Field 2
- Until: 24:00,20; !- Field 3
-
- Schedule:Compact,
- Exterior_Ltg_Sch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 07:00,1.0, !- Field 3
- Until: 19:00,0.0, !- Field 5
- Until: 24:00,1.0; !- Field 7
-
-
-
- Schedule:Compact,
- BLDG_ELEVATORS, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: WinterDesignDay, !- Field 2
- Until: 24:00,0.05, !- Field 3
- For: SummerDesignDay, !- Field 5
- Until: 24:00,0.5, !- Field 6
- For: Allotherdays, !- Field 8
- Until: 04:00,0.05, !- Field 9
- Until: 05:00,0.10, !- Field 11
- Until: 06:00,0.20, !- Field 13
- Until: 07:00,0.40, !- Field 15
- Until: 09:00,0.50, !- Field 17
- Until: 10:00,0.35, !- Field 19
- Until: 16:00,0.15, !- Field 21
- Until: 17:00,0.35, !- Field 23
- Until: 19:00,0.50, !- Field 25
- Until: 21:00,0.40, !- Field 27
- Until: 22:00,0.30, !- Field 29
- Until: 23:00,0.20, !- Field 31
- Until: 24:00,0.10; !- Field 33
-
-
-
- Schedule:Compact,
- ELEV_LIGHT_FAN_SCH_24_7, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
-
-
- Schedule:Compact,
- ELEV_LIGHT_FAN_SCH_ADD_DF, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: WinterDesignDay, !- Field 2
- Until: 24:00,0.05, !- Field 3
- For: SummerDesignDay, !- Field 5
- Until: 24:00,0.5, !- Field 6
- For: Allotherdays, !- Field 8
- Until: 04:00,0.05, !- Field 9
- Until: 05:00,0.10, !- Field 11
- Until: 06:00,0.20, !- Field 13
- Until: 07:00,0.40, !- Field 15
- Until: 09:00,0.50, !- Field 17
- Until: 10:00,0.35, !- Field 19
- Until: 16:00,0.15, !- Field 21
- Until: 17:00,0.35, !- Field 23
- Until: 19:00,0.50, !- Field 25
- Until: 21:00,0.40, !- Field 27
- Until: 22:00,0.30, !- Field 29
- Until: 23:00,0.20, !- Field 31
- Until: 24:00,0.10; !- Field 33
-
-!- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES ===========
-
- GlobalGeometryRules,
- UpperLeftCorner, !- Starting Vertex Position
- Counterclockwise, !- Vertex Entry Direction
- Relative, !- Coordinate System
- Relative; !- Daylighting Reference Point Coordinate System
-
-
- Construction:FfactorGroundFloor,
- gGFloorSWA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328, !- Area
- 19.2014; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorNWA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000001, !- Area
- 19.2014; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorSEA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 19.2014; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorNEA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 19.201400000000003; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorN1A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 11.5818; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorN2A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 11.581800000000001; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorS1A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328, !- Area
- 11.5818; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorS2A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328, !- Area
- 11.581800000000001; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gFloorC_Ffactor, !- Name
- 0.751254, !- F-Factor
- 77.65845299, !- Area
- 3.352599999999999; !- PerimeterExposed
-
-
-!- =========== ALL OBJECTS IN CLASS: ZONE ===========
-
- Zone,
- G SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- Office, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- G Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F2 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 3.0478, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F3 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 6.0957, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F4 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 9.1435, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- M Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 12.1914, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F6 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 15.2393, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F7 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 18.2871, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F8 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 21.3349, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- F9 Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 24.3828, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T SW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T NW Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T SE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T NE Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 34.7455, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T N1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T N2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 9.2959, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T S1 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 11.5818, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T S2 Apartment, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 23.1637, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- Zone,
- T Corridor, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 7.6196, !- Y Origin {m}
- 27.4307, !- Z Origin {m}
- 1, !- Type
- 1, !- Multiplier
- -9999.0000, !- Ceiling Height {m}
- autocalculate, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
-!- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED ===========
-
- BuildingSurface:Detailed,
- g SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor SWA, !- Name
- Floor, !- Surface Type
- gGFloorSWA_Ffactor, !- Construction Name
- G SW Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor NWA, !- Name
- Floor, !- Surface Type
- gGFloorNWA_Ffactor, !- Construction Name
- G NW Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Office, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Office, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor SEA, !- Name
- Floor, !- Surface Type
- gGFloorSEA_Ffactor, !- Construction Name
- Office, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Office, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor NEA, !- Name
- Floor, !- Surface Type
- gGFloorNEA_Ffactor, !- Construction Name
- G NE Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor N1A, !- Name
- Floor, !- Surface Type
- gGFloorN1A_Ffactor, !- Construction Name
- G N1 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor N2A, !- Name
- Floor, !- Surface Type
- gGFloorN2A_Ffactor, !- Construction Name
- G N2 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor S1A, !- Name
- Floor, !- Surface Type
- gGFloorS1A_Ffactor, !- Construction Name
- G S1 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g GFloor S2A, !- Name
- Floor, !- Surface Type
- gGFloorS2A_Ffactor, !- Construction Name
- G S2 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- Office, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- g Floor C, !- Name
- Floor, !- Surface Type
- gFloorC_Ffactor, !- Construction Name
- G Corridor, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F2 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F2 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F2 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F2 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F2 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F2 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F3 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F3 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F3 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F3 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F3 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F3 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F2 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F4 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F4 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F4 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F4 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F4 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F4 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F3 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- m Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- M Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F4 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F6 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F6 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F6 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F6 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F6 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F6 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F7 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F7 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F7 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F7 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F7 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F7 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F6 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F8 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F8 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F8 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F8 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F8 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F8 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F7 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- F9 S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- F9 SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- F9 Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- F9 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- t Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- F9 Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- F9 Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F8 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor SWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof SWA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor NWA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof NWA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor SEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof SEA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor NEA, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof NEA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor N1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof N1A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor N2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof N2A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor S1A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof S1A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t GFloor S2A, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof S2A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,7.619600,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581800,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 11.581800,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581800,7.619600,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581800,7.619600,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.676300,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Roof C, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327300,0.000000,3.047800, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,3.047800, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,1.676300,3.047800, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,3.047800; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- t Floor C, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- T Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- F9 Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676300,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,1.676300,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,0.000000,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-!- =========== ALL OBJECTS IN CLASS: FENESTRATIONSURFACE:DETAILED ===========
-FenestrationSurface:Detailed,
-GWindow1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F2Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F2 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F3Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F3 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F4Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F4 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F6Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F6 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F7Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F7 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F8Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F8 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-F9Window7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-F9 EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow11, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow12, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow3, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-1.4476, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-1.4476, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-10.133380019685, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-10.133380019685, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow2, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow6, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-6.5, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-6.5, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-0.785679133858268, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-0.785679133858268, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow5, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow9, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow10, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow4, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-10.5, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-10.5, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-1.81422244094488, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-1.81422244094488, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow8, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow7, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-T EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.1, !- Vertex 1 Y-coordinate {m}
-2.1731, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.1, !- Vertex 2 Y-coordinate {m}
-0.9539, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-6.81432086614173, !- Vertex 3 Y-coordinate {m}
-0.9539, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-6.81432086614173, !- Vertex 4 Y-coordinate {m}
-2.1731; !- Vertex 4 Z-coordinate {m}
-
-
- FenestrationSurface:Detailed,
- GWindow13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- g WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F2Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F2 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F2Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F2 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F3Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F3 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F3Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F3 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F4Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F4 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F4Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F4 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- MWindow13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- m WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- MWindow14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- m EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F6Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F6 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F6Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F6 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F7Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F7 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F7Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F7 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F8Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F8 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F8Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F8 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F9Window13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F9 WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- F9Window14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- F9 EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- TWindow13, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- t WWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000000,1.295300,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.295300,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.381000,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.381000,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- TWindow14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- t EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.381000,2.173100, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.381000,0.954000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.295300,0.954000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.295300,2.173100; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ENTRANCE DOOR, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name,
- g EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 46.327300,0.050800,2.133500, !- X,Y,Z ==> Vertex 1 {m}
- 46.327300,0.050800,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327300,1.625500,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327300,1.625500,2.133500; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
-!- =========== ALL OBJECTS IN CLASS: INTERNALMASS ===========
-
- InternalMass,
- G SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G SW Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- G NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G NW Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- Office_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Office, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- G NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G NE Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- G N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G N1 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- G N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G N2 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- G S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G S1 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- G S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- G S2 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- F2 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F2 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F2 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F3 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F3 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F4 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F4 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- M S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- M S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F6 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F6 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F7 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F7 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F8 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F8 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 SW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 NW Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 SE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 NE Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 N1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 N2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 S1 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- F9 S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- F9 S2 Apartment, !- Zone Name
- 176.4981; !- Surface Area {m2}
-
- InternalMass,
- T SW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T SW Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T NW Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T NW Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T SE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T SE Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T NE Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T NE Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T N1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T N1 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T N2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T N2 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T S1 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T S1 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
- InternalMass,
- T S2 Apartment_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- T S2 Apartment, !- Zone Name
- 88.2492727; !- Surface Area {m2}
-
-!- =========== ALL OBJECTS IN CLASS: PEOPLE ===========
-
- People,
- G SW Apartment People, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.5, !- Fraction Radiant
- autocalculate, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- G NW Apartment People, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Office People, !- Name
- Office, !- Zone or ZoneList Name
- OCC_OFF_w_SB_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.0000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- G NE Apartment People, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- G N1 Apartment People, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- G N2 Apartment People, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- G S1 Apartment People, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- G S2 Apartment People, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 SW Apartment People, !- Name
- F2 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 NW Apartment People, !- Name
- F2 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 SE Apartment People, !- Name
- F2 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 NE Apartment People, !- Name
- F2 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 N1 Apartment People, !- Name
- F2 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 N2 Apartment People, !- Name
- F2 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 S1 Apartment People, !- Name
- F2 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F2 S2 Apartment People, !- Name
- F2 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 SW Apartment People, !- Name
- F3 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 NW Apartment People, !- Name
- F3 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 SE Apartment People, !- Name
- F3 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 NE Apartment People, !- Name
- F3 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 N1 Apartment People, !- Name
- F3 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 N2 Apartment People, !- Name
- F3 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 S1 Apartment People, !- Name
- F3 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F3 S2 Apartment People, !- Name
- F3 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 SW Apartment People, !- Name
- F4 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 NW Apartment People, !- Name
- F4 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 SE Apartment People, !- Name
- F4 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 NE Apartment People, !- Name
- F4 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 N1 Apartment People, !- Name
- F4 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 N2 Apartment People, !- Name
- F4 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 S1 Apartment People, !- Name
- F4 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F4 S2 Apartment People, !- Name
- F4 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M SW Apartment People, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M NW Apartment People, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M SE Apartment People, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M NE Apartment People, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M N1 Apartment People, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M N2 Apartment People, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M S1 Apartment People, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- M S2 Apartment People, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 SW Apartment People, !- Name
- F6 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 NW Apartment People, !- Name
- F6 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 SE Apartment People, !- Name
- F6 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 NE Apartment People, !- Name
- F6 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 N1 Apartment People, !- Name
- F6 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 N2 Apartment People, !- Name
- F6 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 S1 Apartment People, !- Name
- F6 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F6 S2 Apartment People, !- Name
- F6 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 SW Apartment People, !- Name
- F7 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 NW Apartment People, !- Name
- F7 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 SE Apartment People, !- Name
- F7 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 NE Apartment People, !- Name
- F7 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 N1 Apartment People, !- Name
- F7 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 N2 Apartment People, !- Name
- F7 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 S1 Apartment People, !- Name
- F7 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F7 S2 Apartment People, !- Name
- F7 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 SW Apartment People, !- Name
- F8 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 NW Apartment People, !- Name
- F8 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 SE Apartment People, !- Name
- F8 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 NE Apartment People, !- Name
- F8 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 N1 Apartment People, !- Name
- F8 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 N2 Apartment People, !- Name
- F8 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 S1 Apartment People, !- Name
- F8 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F8 S2 Apartment People, !- Name
- F8 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 SW Apartment People, !- Name
- F9 SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 NW Apartment People, !- Name
- F9 NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 SE Apartment People, !- Name
- F9 SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 NE Apartment People, !- Name
- F9 NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 N1 Apartment People, !- Name
- F9 N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 N2 Apartment People, !- Name
- F9 N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 S1 Apartment People, !- Name
- F9 S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- F9 S2 Apartment People, !- Name
- F9 S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T SW Apartment People, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T NW Apartment People, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T SE Apartment People, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T NE Apartment People, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T N1 Apartment People, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T N2 Apartment People, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T S1 Apartment People, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- T S2 Apartment People, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5000, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: LIGHTS ===========
-
- Lights,
- G SW Apartment_Lights_hardwired, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G NW Apartment_Lights_hardwired, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Office_Lights_hardwired, !- Name
- Office, !- Zone or ZoneList Name
- LTG_OFF_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.965293709, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G NE Apartment_Lights_hardwired, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G N1 Apartment_Lights_hardwired, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G N2 Apartment_Lights_hardwired, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G S1 Apartment_Lights_hardwired, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G S2 Apartment_Lights_hardwired, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G Corridor_Lights_hardwired, !- Name
- G Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 SW Apartment_Lights_hardwired, !- Name
- F2 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 NW Apartment_Lights_hardwired, !- Name
- F2 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 SE Apartment_Lights_hardwired, !- Name
- F2 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 NE Apartment_Lights_hardwired, !- Name
- F2 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 N1 Apartment_Lights_hardwired, !- Name
- F2 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 N2 Apartment_Lights_hardwired, !- Name
- F2 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 S1 Apartment_Lights_hardwired, !- Name
- F2 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 S2 Apartment_Lights_hardwired, !- Name
- F2 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 Corridor_Lights_hardwired, !- Name
- F2 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 SW Apartment_Lights_hardwired, !- Name
- F3 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 NW Apartment_Lights_hardwired, !- Name
- F3 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 SE Apartment_Lights_hardwired, !- Name
- F3 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 NE Apartment_Lights_hardwired, !- Name
- F3 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 N1 Apartment_Lights_hardwired, !- Name
- F3 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 N2 Apartment_Lights_hardwired, !- Name
- F3 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 S1 Apartment_Lights_hardwired, !- Name
- F3 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 S2 Apartment_Lights_hardwired, !- Name
- F3 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 Corridor_Lights_hardwired, !- Name
- F3 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 SW Apartment_Lights_hardwired, !- Name
- F4 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 NW Apartment_Lights_hardwired, !- Name
- F4 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 SE Apartment_Lights_hardwired, !- Name
- F4 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 NE Apartment_Lights_hardwired, !- Name
- F4 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 N1 Apartment_Lights_hardwired, !- Name
- F4 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 N2 Apartment_Lights_hardwired, !- Name
- F4 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 S1 Apartment_Lights_hardwired, !- Name
- F4 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 S2 Apartment_Lights_hardwired, !- Name
- F4 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 Corridor_Lights_hardwired, !- Name
- F4 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M SW Apartment_Lights_hardwired, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M NW Apartment_Lights_hardwired, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M SE Apartment_Lights_hardwired, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M NE Apartment_Lights_hardwired, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M N1 Apartment_Lights_hardwired, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M N2 Apartment_Lights_hardwired, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M S1 Apartment_Lights_hardwired, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M S2 Apartment_Lights_hardwired, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M Corridor_Lights_hardwired, !- Name
- M Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 SW Apartment_Lights_hardwired, !- Name
- F6 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 NW Apartment_Lights_hardwired, !- Name
- F6 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 SE Apartment_Lights_hardwired, !- Name
- F6 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 NE Apartment_Lights_hardwired, !- Name
- F6 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 N1 Apartment_Lights_hardwired, !- Name
- F6 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 N2 Apartment_Lights_hardwired, !- Name
- F6 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 S1 Apartment_Lights_hardwired, !- Name
- F6 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 S2 Apartment_Lights_hardwired, !- Name
- F6 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 Corridor_Lights_hardwired, !- Name
- F6 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 SW Apartment_Lights_hardwired, !- Name
- F7 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 NW Apartment_Lights_hardwired, !- Name
- F7 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 SE Apartment_Lights_hardwired, !- Name
- F7 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 NE Apartment_Lights_hardwired, !- Name
- F7 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 N1 Apartment_Lights_hardwired, !- Name
- F7 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 N2 Apartment_Lights_hardwired, !- Name
- F7 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 S1 Apartment_Lights_hardwired, !- Name
- F7 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 S2 Apartment_Lights_hardwired, !- Name
- F7 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 Corridor_Lights_hardwired, !- Name
- F7 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 SW Apartment_Lights_hardwired, !- Name
- F8 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 NW Apartment_Lights_hardwired, !- Name
- F8 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 SE Apartment_Lights_hardwired, !- Name
- F8 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 NE Apartment_Lights_hardwired, !- Name
- F8 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 N1 Apartment_Lights_hardwired, !- Name
- F8 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 N2 Apartment_Lights_hardwired, !- Name
- F8 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 S1 Apartment_Lights_hardwired, !- Name
- F8 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 S2 Apartment_Lights_hardwired, !- Name
- F8 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 Corridor_Lights_hardwired, !- Name
- F8 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 SW Apartment_Lights_hardwired, !- Name
- F9 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 NW Apartment_Lights_hardwired, !- Name
- F9 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 SE Apartment_Lights_hardwired, !- Name
- F9 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 NE Apartment_Lights_hardwired, !- Name
- F9 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 N1 Apartment_Lights_hardwired, !- Name
- F9 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 N2 Apartment_Lights_hardwired, !- Name
- F9 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 S1 Apartment_Lights_hardwired, !- Name
- F9 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 S2 Apartment_Lights_hardwired, !- Name
- F9 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 Corridor_Lights_hardwired, !- Name
- F9 Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T SW Apartment_Lights_hardwired, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T NW Apartment_Lights_hardwired, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T SE Apartment_Lights_hardwired, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T NE Apartment_Lights_hardwired, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T N1 Apartment_Lights_hardwired, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T N2 Apartment_Lights_hardwired, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T S1 Apartment_Lights_hardwired, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T S2 Apartment_Lights_hardwired, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T Corridor_Lights_hardwired, !- Name
- T Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
-
- Lights,
- G SW Apartment_Lights_plugin, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G NW Apartment_Lights_plugin, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
-
- G NE Apartment_Lights_plugin, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G N1 Apartment_Lights_plugin, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G N2 Apartment_Lights_plugin, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G S1 Apartment_Lights_plugin, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- G S2 Apartment_Lights_plugin, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 SW Apartment_Lights_plugin, !- Name
- F2 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 NW Apartment_Lights_plugin, !- Name
- F2 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 SE Apartment_Lights_plugin, !- Name
- F2 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 NE Apartment_Lights_plugin, !- Name
- F2 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 N1 Apartment_Lights_plugin, !- Name
- F2 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 N2 Apartment_Lights_plugin, !- Name
- F2 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 S1 Apartment_Lights_plugin, !- Name
- F2 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F2 S2 Apartment_Lights_plugin, !- Name
- F2 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 SW Apartment_Lights_plugin, !- Name
- F3 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 NW Apartment_Lights_plugin, !- Name
- F3 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 SE Apartment_Lights_plugin, !- Name
- F3 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 NE Apartment_Lights_plugin, !- Name
- F3 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 N1 Apartment_Lights_plugin, !- Name
- F3 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 N2 Apartment_Lights_plugin, !- Name
- F3 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 S1 Apartment_Lights_plugin, !- Name
- F3 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F3 S2 Apartment_Lights_plugin, !- Name
- F3 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 SW Apartment_Lights_plugin, !- Name
- F4 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 NW Apartment_Lights_plugin, !- Name
- F4 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 SE Apartment_Lights_plugin, !- Name
- F4 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 NE Apartment_Lights_plugin, !- Name
- F4 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 N1 Apartment_Lights_plugin, !- Name
- F4 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 N2 Apartment_Lights_plugin, !- Name
- F4 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 S1 Apartment_Lights_plugin, !- Name
- F4 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F4 S2 Apartment_Lights_plugin, !- Name
- F4 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M SW Apartment_Lights_plugin, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M NW Apartment_Lights_plugin, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M SE Apartment_Lights_plugin, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M NE Apartment_Lights_plugin, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M N1 Apartment_Lights_plugin, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M N2 Apartment_Lights_plugin, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M S1 Apartment_Lights_plugin, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- M S2 Apartment_Lights_plugin, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
-
- F6 SW Apartment_Lights_plugin, !- Name
- F6 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 NW Apartment_Lights_plugin, !- Name
- F6 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 SE Apartment_Lights_plugin, !- Name
- F6 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 NE Apartment_Lights_plugin, !- Name
- F6 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 N1 Apartment_Lights_plugin, !- Name
- F6 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 N2 Apartment_Lights_plugin, !- Name
- F6 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 S1 Apartment_Lights_plugin, !- Name
- F6 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F6 S2 Apartment_Lights_plugin, !- Name
- F6 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 SW Apartment_Lights_plugin, !- Name
- F7 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 NW Apartment_Lights_plugin, !- Name
- F7 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 SE Apartment_Lights_plugin, !- Name
- F7 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 NE Apartment_Lights_plugin, !- Name
- F7 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 N1 Apartment_Lights_plugin, !- Name
- F7 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 N2 Apartment_Lights_plugin, !- Name
- F7 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 S1 Apartment_Lights_plugin, !- Name
- F7 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F7 S2 Apartment_Lights_plugin, !- Name
- F7 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 SW Apartment_Lights_plugin, !- Name
- F8 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 NW Apartment_Lights_plugin, !- Name
- F8 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 SE Apartment_Lights_plugin, !- Name
- F8 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 NE Apartment_Lights_plugin, !- Name
- F8 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 N1 Apartment_Lights_plugin, !- Name
- F8 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 N2 Apartment_Lights_plugin, !- Name
- F8 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 S1 Apartment_Lights_plugin, !- Name
- F8 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F8 S2 Apartment_Lights_plugin, !- Name
- F8 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 SW Apartment_Lights_plugin, !- Name
- F9 SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 NW Apartment_Lights_plugin, !- Name
- F9 NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 SE Apartment_Lights_plugin, !- Name
- F9 SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 NE Apartment_Lights_plugin, !- Name
- F9 NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 N1 Apartment_Lights_plugin, !- Name
- F9 N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 N2 Apartment_Lights_plugin, !- Name
- F9 N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 S1 Apartment_Lights_plugin, !- Name
- F9 S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- F9 S2 Apartment_Lights_plugin, !- Name
- F9 S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T SW Apartment_Lights_plugin, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T NW Apartment_Lights_plugin, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T SE Apartment_Lights_plugin, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T NE Apartment_Lights_plugin, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T N1 Apartment_Lights_plugin, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T N2 Apartment_Lights_plugin, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T S1 Apartment_Lights_plugin, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- T S2 Apartment_Lights_plugin, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
-!- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT ===========
-
- ElectricEquipment,
- G SW Apartment_Plug_GSW_Equip, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- G NW Apartment_Plug_GNW_Equip, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Office_Plug_Office_Equip,!- Name
- Office, !- Zone or ZoneList Name
- EQP_OFF_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- G NE Apartment_Plug_GNE_Equip, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- G N1 Apartment_Plug_GN1_Equip, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- G N2 Apartment_Plug_GN2_Equip, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- G S1 Apartment_Plug_GS1_Equip, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- G S2 Apartment_Plug_GS2_Equip, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 SW Apartment_Plug_MSW_Equip, !- Name
- F2 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 NW Apartment_Plug_MNW_Equip, !- Name
- F2 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 SE Apartment_Plug_MSE_Equip, !- Name
- F2 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 NE Apartment_Plug_MNE_Equip, !- Name
- F2 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 N1 Apartment_Plug_MN1_Equip, !- Name
- F2 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 N2 Apartment_Plug_MN2_Equip, !- Name
- F2 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 S1 Apartment_Plug_MS1_Equip, !- Name
- F2 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F2 S2 Apartment_Plug_MS2_Equip, !- Name
- F2 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 SW Apartment_Plug_MSW_Equip, !- Name
- F3 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 NW Apartment_Plug_MNW_Equip, !- Name
- F3 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 SE Apartment_Plug_MSE_Equip, !- Name
- F3 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 NE Apartment_Plug_MNE_Equip, !- Name
- F3 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 N1 Apartment_Plug_MN1_Equip, !- Name
- F3 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 N2 Apartment_Plug_MN2_Equip, !- Name
- F3 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 S1 Apartment_Plug_MS1_Equip, !- Name
- F3 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F3 S2 Apartment_Plug_MS2_Equip, !- Name
- F3 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 SW Apartment_Plug_MSW_Equip, !- Name
- F4 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 NW Apartment_Plug_MNW_Equip, !- Name
- F4 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 SE Apartment_Plug_MSE_Equip, !- Name
- F4 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 NE Apartment_Plug_MNE_Equip, !- Name
- F4 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 N1 Apartment_Plug_MN1_Equip, !- Name
- F4 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 N2 Apartment_Plug_MN2_Equip, !- Name
- F4 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 S1 Apartment_Plug_MS1_Equip, !- Name
- F4 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F4 S2 Apartment_Plug_MS2_Equip, !- Name
- F4 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M SW Apartment_Plug_MSW_Equip, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M NW Apartment_Plug_MNW_Equip, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M SE Apartment_Plug_MSE_Equip, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M NE Apartment_Plug_MNE_Equip, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M N1 Apartment_Plug_MN1_Equip, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M N2 Apartment_Plug_MN2_Equip, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M S1 Apartment_Plug_MS1_Equip, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- M S2 Apartment_Plug_MS2_Equip, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 SW Apartment_Plug_MSW_Equip, !- Name
- F6 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 NW Apartment_Plug_MNW_Equip, !- Name
- F6 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 SE Apartment_Plug_MSE_Equip, !- Name
- F6 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 NE Apartment_Plug_MNE_Equip, !- Name
- F6 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 N1 Apartment_Plug_MN1_Equip, !- Name
- F6 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 N2 Apartment_Plug_MN2_Equip, !- Name
- F6 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 S1 Apartment_Plug_MS1_Equip, !- Name
- F6 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F6 S2 Apartment_Plug_MS2_Equip, !- Name
- F6 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 SW Apartment_Plug_MSW_Equip, !- Name
- F7 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 NW Apartment_Plug_MNW_Equip, !- Name
- F7 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 SE Apartment_Plug_MSE_Equip, !- Name
- F7 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 NE Apartment_Plug_MNE_Equip, !- Name
- F7 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 N1 Apartment_Plug_MN1_Equip, !- Name
- F7 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 N2 Apartment_Plug_MN2_Equip, !- Name
- F7 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 S1 Apartment_Plug_MS1_Equip, !- Name
- F7 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F7 S2 Apartment_Plug_MS2_Equip, !- Name
- F7 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 SW Apartment_Plug_MSW_Equip, !- Name
- F8 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 NW Apartment_Plug_MNW_Equip, !- Name
- F8 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 SE Apartment_Plug_MSE_Equip, !- Name
- F8 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 NE Apartment_Plug_MNE_Equip, !- Name
- F8 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 N1 Apartment_Plug_MN1_Equip, !- Name
- F8 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 N2 Apartment_Plug_MN2_Equip, !- Name
- F8 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 S1 Apartment_Plug_MS1_Equip, !- Name
- F8 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F8 S2 Apartment_Plug_MS2_Equip, !- Name
- F8 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 SW Apartment_Plug_MSW_Equip, !- Name
- F9 SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 NW Apartment_Plug_MNW_Equip, !- Name
- F9 NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 SE Apartment_Plug_MSE_Equip, !- Name
- F9 SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 NE Apartment_Plug_MNE_Equip, !- Name
- F9 NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 N1 Apartment_Plug_MN1_Equip, !- Name
- F9 N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 N2 Apartment_Plug_MN2_Equip, !- Name
- F9 N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 S1 Apartment_Plug_MS1_Equip, !- Name
- F9 S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- F9 S2 Apartment_Plug_MS2_Equip, !- Name
- F9 S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T SW Apartment_Plug_TSW_Equip, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T NW Apartment_Plug_TNW_Equip, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T SE Apartment_Plug_TSE_Equip, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T NE Apartment_Plug_TNE_Equip, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T N1 Apartment_Plug_TN1_Equip, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T N2 Apartment_Plug_TN2_Equip, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T S1 Apartment_Plug_TS1_Equip, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- T S2 Apartment_Plug_TS2_Equip, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
-
-
- ElectricEquipment,
- T Corridor_Elevators_Equip, !- Name
- T Corridor, !- Zone or ZoneList Name
- BLDG_ELEVATORS, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 20370, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.0000, !- Fraction Radiant
- 0.9500, !- Fraction Lost
- ElevatorLift; !- End-Use Subcategory
-
- ElectricEquipment,
- Elevators_Lights_Fan, !- Name
- T Corridor, !- Zone or ZoneList Name
- ELEV_LIGHT_FAN_SCH_ADD_DF, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 63, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.0000, !- Fraction Radiant
- 0.9500, !- Fraction Lost
- ElevatorLightsFan; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION:DESIGNFLOWRATE ===========
-
- ZoneInfiltration:DesignFlowRate,
- G SW Apartment_Infiltration, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G NW Apartment_Infiltration, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Office_Infiltration, !- Name
- Office, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G NE Apartment_Infiltration, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G N1 Apartment_Infiltration, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G N2 Apartment_Infiltration, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G S1 Apartment_Infiltration, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G S2 Apartment_Infiltration, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- G Corridor_Infiltration, !- Name
- G Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Door_Infil_GC, !- Name
- G Corridor, !- Zone or ZoneList Name
- INFIL_Door_Opening_SCH, !- Schedule Name
- Flow/Zone, !- Design Flow Rate Calculation Method
- 1.008078792, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- , !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 1.0, !- Constant Term Coefficient
- 0.0, !- Temperature Term Coefficient
- 0.0, !- Velocity Term Coefficient
- 0.0; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 SW Apartment_Infiltration, !- Name
- F2 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 NW Apartment_Infiltration, !- Name
- F2 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 SE Apartment_Infiltration, !- Name
- F2 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 NE Apartment_Infiltration, !- Name
- F2 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 N1 Apartment_Infiltration, !- Name
- F2 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 N2 Apartment_Infiltration, !- Name
- F2 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 S1 Apartment_Infiltration, !- Name
- F2 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 S2 Apartment_Infiltration, !- Name
- F2 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F2 Corridor_Infiltration,!- Name
- F2 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 SW Apartment_Infiltration, !- Name
- F3 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 NW Apartment_Infiltration, !- Name
- F3 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 SE Apartment_Infiltration, !- Name
- F3 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 NE Apartment_Infiltration, !- Name
- F3 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 N1 Apartment_Infiltration, !- Name
- F3 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 N2 Apartment_Infiltration, !- Name
- F3 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 S1 Apartment_Infiltration, !- Name
- F3 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 S2 Apartment_Infiltration, !- Name
- F3 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F3 Corridor_Infiltration,!- Name
- F3 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 SW Apartment_Infiltration, !- Name
- F4 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 NW Apartment_Infiltration, !- Name
- F4 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 SE Apartment_Infiltration, !- Name
- F4 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 NE Apartment_Infiltration, !- Name
- F4 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 N1 Apartment_Infiltration, !- Name
- F4 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 N2 Apartment_Infiltration, !- Name
- F4 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 S1 Apartment_Infiltration, !- Name
- F4 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 S2 Apartment_Infiltration, !- Name
- F4 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F4 Corridor_Infiltration,!- Name
- F4 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M SW Apartment_Infiltration, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M NW Apartment_Infiltration, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M SE Apartment_Infiltration, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M NE Apartment_Infiltration, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M N1 Apartment_Infiltration, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M N2 Apartment_Infiltration, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M S1 Apartment_Infiltration, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M S2 Apartment_Infiltration, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- M Corridor_Infiltration, !- Name
- M Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 SW Apartment_Infiltration, !- Name
- F6 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 NW Apartment_Infiltration, !- Name
- F6 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 SE Apartment_Infiltration, !- Name
- F6 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 NE Apartment_Infiltration, !- Name
- F6 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 N1 Apartment_Infiltration, !- Name
- F6 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 N2 Apartment_Infiltration, !- Name
- F6 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 S1 Apartment_Infiltration, !- Name
- F6 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 S2 Apartment_Infiltration, !- Name
- F6 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F6 Corridor_Infiltration,!- Name
- F6 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 SW Apartment_Infiltration, !- Name
- F7 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 NW Apartment_Infiltration, !- Name
- F7 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 SE Apartment_Infiltration, !- Name
- F7 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 NE Apartment_Infiltration, !- Name
- F7 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 N1 Apartment_Infiltration, !- Name
- F7 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 N2 Apartment_Infiltration, !- Name
- F7 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 S1 Apartment_Infiltration, !- Name
- F7 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 S2 Apartment_Infiltration, !- Name
- F7 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F7 Corridor_Infiltration,!- Name
- F7 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 SW Apartment_Infiltration, !- Name
- F8 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 NW Apartment_Infiltration, !- Name
- F8 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 SE Apartment_Infiltration, !- Name
- F8 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 NE Apartment_Infiltration, !- Name
- F8 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 N1 Apartment_Infiltration, !- Name
- F8 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 N2 Apartment_Infiltration, !- Name
- F8 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 S1 Apartment_Infiltration, !- Name
- F8 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 S2 Apartment_Infiltration, !- Name
- F8 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F8 Corridor_Infiltration,!- Name
- F8 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 SW Apartment_Infiltration, !- Name
- F9 SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 NW Apartment_Infiltration, !- Name
- F9 NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 SE Apartment_Infiltration, !- Name
- F9 SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 NE Apartment_Infiltration, !- Name
- F9 NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 N1 Apartment_Infiltration, !- Name
- F9 N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 N2 Apartment_Infiltration, !- Name
- F9 N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 S1 Apartment_Infiltration, !- Name
- F9 S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 S2 Apartment_Infiltration, !- Name
- F9 S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- F9 Corridor_Infiltration,!- Name
- F9 Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T SW Apartment_Infiltration, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T NW Apartment_Infiltration, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T SE Apartment_Infiltration, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T NE Apartment_Infiltration, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T N1 Apartment_Infiltration, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T N2 Apartment_Infiltration, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T S1 Apartment_Infiltration, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T S2 Apartment_Infiltration, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- T Corridor_Infiltration, !- Name
- T Corridor, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 6.6170048e-05, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
-!- =========== ALL OBJECTS IN CLASS: EXTERIOR:LIGHTS ===========
-
- Exterior:Lights,
- Facade Lighting, !- Name
- Exterior_Lgt_ALWAYS_ON, !- Schedule Name
- 7504.3, !- Design Level {W}
- AstronomicalClock, !- Control Option
- General; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: SIZING:PARAMETERS ===========
-
- Sizing:Parameters,
- 1.2, !- Heating Sizing Factor
- 1.2, !- Cooling Sizing Factor
- 6; !- Timesteps in Averaging Window
-
-!- =========== ALL OBJECTS IN CLASS: SIZING:ZONE ===========
-
- Sizing:Zone,
- G SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-
- Sizing:Zone,
- G NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000431773, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-
- Sizing:Zone,
- G S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-
- Sizing:Zone,
- F2 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F2 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F2 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F2 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F3 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F3 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F3 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-
- Sizing:Zone,
- F4 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F4 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F4 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F4 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-
- Sizing:Zone,
- F6 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F6 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F6 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F6 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F7 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F7 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F7 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-
- Sizing:Zone,
- F8 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F8 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F8 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F8 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- F9 S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA F9 S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA F9 S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 14.0000, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0000, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0080, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294083,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM ===========
-
- Sizing:System,
- AirLoop G SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop G NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop Office, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop G NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop G N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop G N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop G S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop G S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F2 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F3 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F4 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop M S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F6 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F7 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F8 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop F9 S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T SW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T NW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T SE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T NE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T N1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T N2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T S1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- AirLoop T S2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 14, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
-!- =========== ALL OBJECTS IN CLASS: SIZING:PLANT ===========
-
- Sizing:Plant,
- SHWSys1, !- Plant or Condenser Loop Name
- Heating, !- Loop Type
- 60, !- Design Loop Exit Temperature {C}
- 5.0; !- Loop Design Temperature Difference {deltaC}
-
- Sizing:Plant,
- Single Water Plant Loop, !- Plant or Condenser Loop Name
- Heating, !- Loop Type
- 30, !- Design Loop Exit Temperature {C}
- 11; !- Loop Design Temperature Difference {deltaC}
-
-!- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT ===========
-
- ZoneControl:Thermostat,
- G SW Apartment Thermostat, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- ZONE CONTROL TYPE SCHED, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G NW Apartment Thermostat, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- Office Thermostat, !- Name
- Office, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- OffCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- OffHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- Office Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G NE Apartment Thermostat, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G N1 Apartment Thermostat, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G N2 Apartment Thermostat, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G S1 Apartment Thermostat, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G S2 Apartment Thermostat, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 SW Apartment Thermostat, !- Name
- F2 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 NW Apartment Thermostat, !- Name
- F2 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 SE Apartment Thermostat, !- Name
- F2 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 NE Apartment Thermostat, !- Name
- F2 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 N1 Apartment Thermostat, !- Name
- F2 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 N2 Apartment Thermostat, !- Name
- F2 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 S1 Apartment Thermostat, !- Name
- F2 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F2 S2 Apartment Thermostat, !- Name
- F2 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 SW Apartment Thermostat, !- Name
- F3 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 NW Apartment Thermostat, !- Name
- F3 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 SE Apartment Thermostat, !- Name
- F3 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 NE Apartment Thermostat, !- Name
- F3 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 N1 Apartment Thermostat, !- Name
- F3 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 N2 Apartment Thermostat, !- Name
- F3 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 S1 Apartment Thermostat, !- Name
- F3 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F3 S2 Apartment Thermostat, !- Name
- F3 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 SW Apartment Thermostat, !- Name
- F4 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 NW Apartment Thermostat, !- Name
- F4 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 SE Apartment Thermostat, !- Name
- F4 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 NE Apartment Thermostat, !- Name
- F4 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 N1 Apartment Thermostat, !- Name
- F4 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 N2 Apartment Thermostat, !- Name
- F4 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 S1 Apartment Thermostat, !- Name
- F4 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F4 S2 Apartment Thermostat, !- Name
- F4 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M SW Apartment Thermostat, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M NW Apartment Thermostat, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M SE Apartment Thermostat, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M NE Apartment Thermostat, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M N1 Apartment Thermostat, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M N2 Apartment Thermostat, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M S1 Apartment Thermostat, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- M S2 Apartment Thermostat, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 SW Apartment Thermostat, !- Name
- F6 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 NW Apartment Thermostat, !- Name
- F6 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 SE Apartment Thermostat, !- Name
- F6 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 NE Apartment Thermostat, !- Name
- F6 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 N1 Apartment Thermostat, !- Name
- F6 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 N2 Apartment Thermostat, !- Name
- F6 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 S1 Apartment Thermostat, !- Name
- F6 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F6 S2 Apartment Thermostat, !- Name
- F6 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 SW Apartment Thermostat, !- Name
- F7 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 NW Apartment Thermostat, !- Name
- F7 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 SE Apartment Thermostat, !- Name
- F7 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 NE Apartment Thermostat, !- Name
- F7 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 N1 Apartment Thermostat, !- Name
- F7 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 N2 Apartment Thermostat, !- Name
- F7 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 S1 Apartment Thermostat, !- Name
- F7 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F7 S2 Apartment Thermostat, !- Name
- F7 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 SW Apartment Thermostat, !- Name
- F8 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 NW Apartment Thermostat, !- Name
- F8 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 SE Apartment Thermostat, !- Name
- F8 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 NE Apartment Thermostat, !- Name
- F8 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 N1 Apartment Thermostat, !- Name
- F8 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 N2 Apartment Thermostat, !- Name
- F8 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 S1 Apartment Thermostat, !- Name
- F8 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F8 S2 Apartment Thermostat, !- Name
- F8 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 SW Apartment Thermostat, !- Name
- F9 SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 NW Apartment Thermostat, !- Name
- F9 NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 SE Apartment Thermostat, !- Name
- F9 SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 NE Apartment Thermostat, !- Name
- F9 NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 N1 Apartment Thermostat, !- Name
- F9 N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 N2 Apartment Thermostat, !- Name
- F9 N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 S1 Apartment Thermostat, !- Name
- F9 S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- F9 S2 Apartment Thermostat, !- Name
- F9 S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T SW Apartment Thermostat, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T NW Apartment Thermostat, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T SE Apartment Thermostat, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T NE Apartment Thermostat, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T N1 Apartment Thermostat, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T N2 Apartment Thermostat, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- N Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T S1 Apartment Thermostat, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- T S2 Apartment Thermostat, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Cooling Setpoints Dual SP Control; !- Control 3 Name
-
-!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:SINGLEHEATING ===========
-
- ThermostatSetpoint:SingleHeating,
- AptHeatingSetPoint, !- Name
- HTGSETP_APT_SCH; !- Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:SingleHeating,
- OffHeatingSetPoint, !- Name
- HTGSETP_DESIGN_OFF_SCH; !- Setpoint Temperature Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:SINGLECOOLING ===========
-
- ThermostatSetpoint:SingleCooling,
- AptCoolingSetPoint, !- Name
- CLGSETP_APT_SCH; !- Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:SingleCooling,
- OffCoolingSetPoint, !- Name
- CLGSETP_DESIGN_OFF_SCH; !- Setpoint Temperature Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:DUALSETPOINT ===========
- ThermostatSetpoint:DualSetpoint,
- S Apartment Cooling Setpoints Dual SP Control, !- Name
- S HTGSETP_APT_SCH, !- Heating Setpoint Temperature Schedule Name
- S CLGSETP_APT_SCH; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- N Apartment Cooling Setpoints Dual SP Control, !- Name
- N HTGSETP_APT_SCH, !- Heating Setpoint Temperature Schedule Name
- N CLGSETP_APT_SCH; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Apartment Cooling Setpoints Dual SP Control, !- Name
- HTGSETP_APT_SCH, !- Heating Setpoint Temperature Schedule Name
- CLGSETP_APT_SCH; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Office Cooling Setpoints Dual SP Control, !- Name
- HTGSETP_OFF_SCH_Yes_Optimum, !- Heating Setpoint Temperature Schedule Name
- CLGSETP_OFF_SCH_Yes_Optimum; !- Cooling Setpoint Temperature Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:UNCONTROLLED ===========
-
- AirTerminal:SingleDuct:Uncontrolled,
- G SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- Office Direct Air, !- Name
- All On, !- Availability Schedule Name
- Office Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- G S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F2 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F2 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F3 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F3 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F4 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F4 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- M S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F6 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F6 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F7 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F7 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F8 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F8 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- F9 S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- F9 S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T SW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T SW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T NW Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T NW Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T SE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T SE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T NE Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T NE Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T N1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T N1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T N2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T N2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T S1 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T S1 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T S2 Apartment Direct Air, !- Name
- All On, !- Availability Schedule Name
- T S2 Apartment Supply Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST ===========
-
-ZoneHVAC:EquipmentList,
- G SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- Office Direct Air, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F2 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F2 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F2 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F3 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F3 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F3 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F4 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F4 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F4 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F6 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F6 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F6 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F7 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F7 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F7 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F8 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F8 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F8 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- F9 S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- F9 S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- F9 S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-!- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTCONNECTIONS ===========
-
- ZoneHVAC:EquipmentConnections,
- G SW Apartment, !- Zone Name
- G SW Apartment Equipment,!- Zone Conditioning Equipment List Name
- G SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G SW Apartment Zone Air Node, !- Zone Air Node Name
- G SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G NW Apartment, !- Zone Name
- G NW Apartment Equipment,!- Zone Conditioning Equipment List Name
- G NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G NW Apartment Zone Air Node, !- Zone Air Node Name
- G NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Office, !- Zone Name
- Office Equipment, !- Zone Conditioning Equipment List Name
- Office Inlets, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Office Zone Air Node, !- Zone Air Node Name
- Office Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G NE Apartment, !- Zone Name
- G NE Apartment Equipment,!- Zone Conditioning Equipment List Name
- G NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G NE Apartment Zone Air Node, !- Zone Air Node Name
- G NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G N1 Apartment, !- Zone Name
- G N1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G N1 Apartment Zone Air Node, !- Zone Air Node Name
- G N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G N2 Apartment, !- Zone Name
- G N2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G N2 Apartment Zone Air Node, !- Zone Air Node Name
- G N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G S1 Apartment, !- Zone Name
- G S1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G S1 Apartment Zone Air Node, !- Zone Air Node Name
- G S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G S2 Apartment, !- Zone Name
- G S2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- G S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G S2 Apartment Zone Air Node, !- Zone Air Node Name
- G S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 SW Apartment, !- Zone Name
- F2 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 SW Apartment Zone Air Node, !- Zone Air Node Name
- F2 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 NW Apartment, !- Zone Name
- F2 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 NW Apartment Zone Air Node, !- Zone Air Node Name
- F2 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 SE Apartment, !- Zone Name
- F2 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 SE Apartment Zone Air Node, !- Zone Air Node Name
- F2 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 NE Apartment, !- Zone Name
- F2 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 NE Apartment Zone Air Node, !- Zone Air Node Name
- F2 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 N1 Apartment, !- Zone Name
- F2 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F2 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 N2 Apartment, !- Zone Name
- F2 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F2 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 S1 Apartment, !- Zone Name
- F2 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F2 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F2 S2 Apartment, !- Zone Name
- F2 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F2 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F2 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F2 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F2 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 SW Apartment, !- Zone Name
- F3 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 SW Apartment Zone Air Node, !- Zone Air Node Name
- F3 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 NW Apartment, !- Zone Name
- F3 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 NW Apartment Zone Air Node, !- Zone Air Node Name
- F3 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 SE Apartment, !- Zone Name
- F3 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 SE Apartment Zone Air Node, !- Zone Air Node Name
- F3 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 NE Apartment, !- Zone Name
- F3 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 NE Apartment Zone Air Node, !- Zone Air Node Name
- F3 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 N1 Apartment, !- Zone Name
- F3 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F3 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 N2 Apartment, !- Zone Name
- F3 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F3 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 S1 Apartment, !- Zone Name
- F3 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F3 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F3 S2 Apartment, !- Zone Name
- F3 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F3 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F3 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F3 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F3 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 SW Apartment, !- Zone Name
- F4 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 SW Apartment Zone Air Node, !- Zone Air Node Name
- F4 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 NW Apartment, !- Zone Name
- F4 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 NW Apartment Zone Air Node, !- Zone Air Node Name
- F4 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 SE Apartment, !- Zone Name
- F4 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 SE Apartment Zone Air Node, !- Zone Air Node Name
- F4 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 NE Apartment, !- Zone Name
- F4 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 NE Apartment Zone Air Node, !- Zone Air Node Name
- F4 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 N1 Apartment, !- Zone Name
- F4 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F4 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 N2 Apartment, !- Zone Name
- F4 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F4 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 S1 Apartment, !- Zone Name
- F4 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F4 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F4 S2 Apartment, !- Zone Name
- F4 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F4 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F4 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F4 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F4 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M SW Apartment, !- Zone Name
- M SW Apartment Equipment,!- Zone Conditioning Equipment List Name
- M SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M SW Apartment Zone Air Node, !- Zone Air Node Name
- M SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M NW Apartment, !- Zone Name
- M NW Apartment Equipment,!- Zone Conditioning Equipment List Name
- M NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M NW Apartment Zone Air Node, !- Zone Air Node Name
- M NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M SE Apartment, !- Zone Name
- M SE Apartment Equipment,!- Zone Conditioning Equipment List Name
- M SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M SE Apartment Zone Air Node, !- Zone Air Node Name
- M SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M NE Apartment, !- Zone Name
- M NE Apartment Equipment,!- Zone Conditioning Equipment List Name
- M NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M NE Apartment Zone Air Node, !- Zone Air Node Name
- M NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M N1 Apartment, !- Zone Name
- M N1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M N1 Apartment Zone Air Node, !- Zone Air Node Name
- M N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M N2 Apartment, !- Zone Name
- M N2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M N2 Apartment Zone Air Node, !- Zone Air Node Name
- M N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M S1 Apartment, !- Zone Name
- M S1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M S1 Apartment Zone Air Node, !- Zone Air Node Name
- M S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- M S2 Apartment, !- Zone Name
- M S2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- M S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M S2 Apartment Zone Air Node, !- Zone Air Node Name
- M S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 SW Apartment, !- Zone Name
- F6 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 SW Apartment Zone Air Node, !- Zone Air Node Name
- F6 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 NW Apartment, !- Zone Name
- F6 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 NW Apartment Zone Air Node, !- Zone Air Node Name
- F6 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 SE Apartment, !- Zone Name
- F6 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 SE Apartment Zone Air Node, !- Zone Air Node Name
- F6 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 NE Apartment, !- Zone Name
- F6 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 NE Apartment Zone Air Node, !- Zone Air Node Name
- F6 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 N1 Apartment, !- Zone Name
- F6 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F6 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 N2 Apartment, !- Zone Name
- F6 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F6 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 S1 Apartment, !- Zone Name
- F6 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F6 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F6 S2 Apartment, !- Zone Name
- F6 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F6 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F6 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F6 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F6 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 SW Apartment, !- Zone Name
- F7 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 SW Apartment Zone Air Node, !- Zone Air Node Name
- F7 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 NW Apartment, !- Zone Name
- F7 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 NW Apartment Zone Air Node, !- Zone Air Node Name
- F7 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 SE Apartment, !- Zone Name
- F7 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 SE Apartment Zone Air Node, !- Zone Air Node Name
- F7 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 NE Apartment, !- Zone Name
- F7 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 NE Apartment Zone Air Node, !- Zone Air Node Name
- F7 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 N1 Apartment, !- Zone Name
- F7 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F7 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 N2 Apartment, !- Zone Name
- F7 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F7 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 S1 Apartment, !- Zone Name
- F7 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F7 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F7 S2 Apartment, !- Zone Name
- F7 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F7 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F7 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F7 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F7 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 SW Apartment, !- Zone Name
- F8 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 SW Apartment Zone Air Node, !- Zone Air Node Name
- F8 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 NW Apartment, !- Zone Name
- F8 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 NW Apartment Zone Air Node, !- Zone Air Node Name
- F8 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 SE Apartment, !- Zone Name
- F8 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 SE Apartment Zone Air Node, !- Zone Air Node Name
- F8 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 NE Apartment, !- Zone Name
- F8 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 NE Apartment Zone Air Node, !- Zone Air Node Name
- F8 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 N1 Apartment, !- Zone Name
- F8 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F8 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 N2 Apartment, !- Zone Name
- F8 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F8 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 S1 Apartment, !- Zone Name
- F8 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F8 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F8 S2 Apartment, !- Zone Name
- F8 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F8 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F8 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F8 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F8 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 SW Apartment, !- Zone Name
- F9 SW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 SW Apartment Zone Air Node, !- Zone Air Node Name
- F9 SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 NW Apartment, !- Zone Name
- F9 NW Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 NW Apartment Zone Air Node, !- Zone Air Node Name
- F9 NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 SE Apartment, !- Zone Name
- F9 SE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 SE Apartment Zone Air Node, !- Zone Air Node Name
- F9 SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 NE Apartment, !- Zone Name
- F9 NE Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 NE Apartment Zone Air Node, !- Zone Air Node Name
- F9 NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 N1 Apartment, !- Zone Name
- F9 N1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 N1 Apartment Zone Air Node, !- Zone Air Node Name
- F9 N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 N2 Apartment, !- Zone Name
- F9 N2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 N2 Apartment Zone Air Node, !- Zone Air Node Name
- F9 N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 S1 Apartment, !- Zone Name
- F9 S1 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 S1 Apartment Zone Air Node, !- Zone Air Node Name
- F9 S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- F9 S2 Apartment, !- Zone Name
- F9 S2 Apartment Equipment, !- Zone Conditioning Equipment List Name
- F9 S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- F9 S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- F9 S2 Apartment Zone Air Node, !- Zone Air Node Name
- F9 S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T SW Apartment, !- Zone Name
- T SW Apartment Equipment,!- Zone Conditioning Equipment List Name
- T SW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T SW Apartment Zone Air Node, !- Zone Air Node Name
- T SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T NW Apartment, !- Zone Name
- T NW Apartment Equipment,!- Zone Conditioning Equipment List Name
- T NW Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T NW Apartment Zone Air Node, !- Zone Air Node Name
- T NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T SE Apartment, !- Zone Name
- T SE Apartment Equipment,!- Zone Conditioning Equipment List Name
- T SE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T SE Apartment Zone Air Node, !- Zone Air Node Name
- T SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T NE Apartment, !- Zone Name
- T NE Apartment Equipment,!- Zone Conditioning Equipment List Name
- T NE Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T NE Apartment Zone Air Node, !- Zone Air Node Name
- T NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T N1 Apartment, !- Zone Name
- T N1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T N1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T N1 Apartment Zone Air Node, !- Zone Air Node Name
- T N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T N2 Apartment, !- Zone Name
- T N2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T N2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T N2 Apartment Zone Air Node, !- Zone Air Node Name
- T N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T S1 Apartment, !- Zone Name
- T S1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T S1 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T S1 Apartment Zone Air Node, !- Zone Air Node Name
- T S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- T S2 Apartment, !- Zone Name
- T S2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T S2 Apartment Inlets, !- Zone Air Inlet Node or NodeList Name
- T S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T S2 Apartment Zone Air Node, !- Zone Air Node Name
- T S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: FAN:ONOFF ===========
-
- Fan:OnOff,
- AirLoop G SW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop G NW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop Office Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Office Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop Office Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop G NE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop G N1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop G N2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop G S1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop G S2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F2 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F3 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F4 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M SW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M NW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M SE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M NE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M N1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M N2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M S1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop M S2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F6 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F7 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F8 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 SW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 NW Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 SE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 NE Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 N1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 N2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 S1 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop F9 S2 Supply Fan,!- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 S2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T SW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T SW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T NW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T NW Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T SE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T SE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T NE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T NE Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T N1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T N1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T N2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T N2 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T S1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T S1 Supply Fan Outlet; !- Air Outlet Node Name
-
- Fan:OnOff,
- AirLoop T S2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T S2 Supply Fan Outlet; !- Air Outlet Node Name
-
-!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:ELECTRIC ===========
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G SW, !- Air Inlet Node Name
- AirLoop G SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G NW, !- Air Inlet Node Name
- AirLoop G NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop Office, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop Office, !- Air Inlet Node Name
- AirLoop Office Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G NE, !- Air Inlet Node Name
- AirLoop G NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G N1, !- Air Inlet Node Name
- AirLoop G N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G N2, !- Air Inlet Node Name
- AirLoop G N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G S1, !- Air Inlet Node Name
- AirLoop G S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop G S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop G S2, !- Air Inlet Node Name
- AirLoop G S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 SW, !- Air Inlet Node Name
- AirLoop F2 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 NW, !- Air Inlet Node Name
- AirLoop F2 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 SE, !- Air Inlet Node Name
- AirLoop F2 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 NE, !- Air Inlet Node Name
- AirLoop F2 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 N1, !- Air Inlet Node Name
- AirLoop F2 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 N2, !- Air Inlet Node Name
- AirLoop F2 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 S1, !- Air Inlet Node Name
- AirLoop F2 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F2 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F2 S2, !- Air Inlet Node Name
- AirLoop F2 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 SW, !- Air Inlet Node Name
- AirLoop F3 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 NW, !- Air Inlet Node Name
- AirLoop F3 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 SE, !- Air Inlet Node Name
- AirLoop F3 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 NE, !- Air Inlet Node Name
- AirLoop F3 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 N1, !- Air Inlet Node Name
- AirLoop F3 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 N2, !- Air Inlet Node Name
- AirLoop F3 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 S1, !- Air Inlet Node Name
- AirLoop F3 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F3 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F3 S2, !- Air Inlet Node Name
- AirLoop F3 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 SW, !- Air Inlet Node Name
- AirLoop F4 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 NW, !- Air Inlet Node Name
- AirLoop F4 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 SE, !- Air Inlet Node Name
- AirLoop F4 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 NE, !- Air Inlet Node Name
- AirLoop F4 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 N1, !- Air Inlet Node Name
- AirLoop F4 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 N2, !- Air Inlet Node Name
- AirLoop F4 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 S1, !- Air Inlet Node Name
- AirLoop F4 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F4 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F4 S2, !- Air Inlet Node Name
- AirLoop F4 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M SW, !- Air Inlet Node Name
- AirLoop M SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M NW, !- Air Inlet Node Name
- AirLoop M NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M SE, !- Air Inlet Node Name
- AirLoop M SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M NE, !- Air Inlet Node Name
- AirLoop M NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M N1, !- Air Inlet Node Name
- AirLoop M N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M N2, !- Air Inlet Node Name
- AirLoop M N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M S1, !- Air Inlet Node Name
- AirLoop M S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop M S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop M S2, !- Air Inlet Node Name
- AirLoop M S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 SW, !- Air Inlet Node Name
- AirLoop F6 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 NW, !- Air Inlet Node Name
- AirLoop F6 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 SE, !- Air Inlet Node Name
- AirLoop F6 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 NE, !- Air Inlet Node Name
- AirLoop F6 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 N1, !- Air Inlet Node Name
- AirLoop F6 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 N2, !- Air Inlet Node Name
- AirLoop F6 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 S1, !- Air Inlet Node Name
- AirLoop F6 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F6 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F6 S2, !- Air Inlet Node Name
- AirLoop F6 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 SW, !- Air Inlet Node Name
- AirLoop F7 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 NW, !- Air Inlet Node Name
- AirLoop F7 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 SE, !- Air Inlet Node Name
- AirLoop F7 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 NE, !- Air Inlet Node Name
- AirLoop F7 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 N1, !- Air Inlet Node Name
- AirLoop F7 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 N2, !- Air Inlet Node Name
- AirLoop F7 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 S1, !- Air Inlet Node Name
- AirLoop F7 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F7 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F7 S2, !- Air Inlet Node Name
- AirLoop F7 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 SW, !- Air Inlet Node Name
- AirLoop F8 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 NW, !- Air Inlet Node Name
- AirLoop F8 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 SE, !- Air Inlet Node Name
- AirLoop F8 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 NE, !- Air Inlet Node Name
- AirLoop F8 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 N1, !- Air Inlet Node Name
- AirLoop F8 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 N2, !- Air Inlet Node Name
- AirLoop F8 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 S1, !- Air Inlet Node Name
- AirLoop F8 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F8 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F8 S2, !- Air Inlet Node Name
- AirLoop F8 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 SW, !- Air Inlet Node Name
- AirLoop F9 SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 NW, !- Air Inlet Node Name
- AirLoop F9 NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 SE, !- Air Inlet Node Name
- AirLoop F9 SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 NE, !- Air Inlet Node Name
- AirLoop F9 NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 N1, !- Air Inlet Node Name
- AirLoop F9 N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 N2, !- Air Inlet Node Name
- AirLoop F9 N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 S1, !- Air Inlet Node Name
- AirLoop F9 S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop F9 S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop F9 S2, !- Air Inlet Node Name
- AirLoop F9 S2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T SW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T SW, !- Air Inlet Node Name
- AirLoop T SW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T NW, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T NW, !- Air Inlet Node Name
- AirLoop T NW Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T SE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T SE, !- Air Inlet Node Name
- AirLoop T SE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T NE, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T NE, !- Air Inlet Node Name
- AirLoop T NE Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T N1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T N1, !- Air Inlet Node Name
- AirLoop T N1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T N2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T N2, !- Air Inlet Node Name
- AirLoop T N2 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T S1, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T S1, !- Air Inlet Node Name
- AirLoop T S1 Supply Air Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Electric,
- Heat Pump DX Supp Heating Coil AirLoop T S2, !- Name
- All On, !- Availability Schedule Name
- 1, !- Efficiency
- autosize, !- Nominal Capacity {W}
- Heating Coil Air Outlet Node AirLoop T S2, !- Air Inlet Node Name
- AirLoop T S2 Supply Air Outlet; !- Air Outlet Node Name
-
-!- =========== ALL OBJECTS IN CLASS: COIL:COOLING:WATERTOAIRHEATPUMP:EQUATIONFIT ===========
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G SW, !- Name
- AirLoop G SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G NW, !- Name
- AirLoop G NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop Office, !- Name
- AirLoop Office Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop Office Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop Office Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop Office, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G NE, !- Name
- AirLoop G NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G N1, !- Name
- AirLoop G N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G N2, !- Name
- AirLoop G N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G S1, !- Name
- AirLoop G S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop G S2, !- Name
- AirLoop G S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop G S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop G S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop G S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 SW, !- Name
- AirLoop F2 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 NW, !- Name
- AirLoop F2 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 SE, !- Name
- AirLoop F2 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 NE, !- Name
- AirLoop F2 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 N1, !- Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 N2, !- Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 S1, !- Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F2 S2, !- Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F2 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 SW, !- Name
- AirLoop F3 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 NW, !- Name
- AirLoop F3 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 SE, !- Name
- AirLoop F3 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 NE, !- Name
- AirLoop F3 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 N1, !- Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 N2, !- Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 S1, !- Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F3 S2, !- Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F3 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 SW, !- Name
- AirLoop F4 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 NW, !- Name
- AirLoop F4 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 SE, !- Name
- AirLoop F4 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 NE, !- Name
- AirLoop F4 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 N1, !- Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 N2, !- Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 S1, !- Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F4 S2, !- Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F4 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M SW, !- Name
- AirLoop M SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M NW, !- Name
- AirLoop M NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M SE, !- Name
- AirLoop M SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M NE, !- Name
- AirLoop M NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M N1, !- Name
- AirLoop M N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M N2, !- Name
- AirLoop M N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M S1, !- Name
- AirLoop M S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop M S2, !- Name
- AirLoop M S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop M S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop M S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop M S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 SW, !- Name
- AirLoop F6 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 NW, !- Name
- AirLoop F6 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 SE, !- Name
- AirLoop F6 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 NE, !- Name
- AirLoop F6 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 N1, !- Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 N2, !- Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 S1, !- Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F6 S2, !- Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F6 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 SW, !- Name
- AirLoop F7 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 NW, !- Name
- AirLoop F7 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 SE, !- Name
- AirLoop F7 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 NE, !- Name
- AirLoop F7 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 N1, !- Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 N2, !- Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 S1, !- Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F7 S2, !- Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F7 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 SW, !- Name
- AirLoop F8 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 NW, !- Name
- AirLoop F8 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 SE, !- Name
- AirLoop F8 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 NE, !- Name
- AirLoop F8 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 N1, !- Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 N2, !- Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 S1, !- Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F8 S2, !- Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F8 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 SW, !- Name
- AirLoop F9 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 NW, !- Name
- AirLoop F9 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 SE, !- Name
- AirLoop F9 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 NE, !- Name
- AirLoop F9 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 N1, !- Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 N2, !- Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 S1, !- Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop F9 S2, !- Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop F9 S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T SW, !- Name
- AirLoop T SW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T SW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T SW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.46473377194151, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T NW, !- Name
- AirLoop T NW Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T NW Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T NW Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T SE, !- Name
- AirLoop T SE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T SE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T SE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T NE, !- Name
- AirLoop T NE Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T NE Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T NE Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T N1, !- Name
- AirLoop T N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T N1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T N1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T N2, !- Name
- AirLoop T N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T N2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T N2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T S1, !- Name
- AirLoop T S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T S1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T S1 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
- Coil:Cooling:WaterToAirHeatPump:EquationFit,
- Heat Pump Cooling Mode AirLoop T S2, !- Name
- AirLoop T S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name
- AirLoop T S2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name
- AirLoop T S2 Supply Fan Outlet, !- Air Inlet Node Name
- Cooling Coil Air Outlet Node AirLoop T S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Cooling Capacity {W}
-4.19837253282902, !- Gross Rated Cooling COP
- -4.30266987344639, !- Total Cooling Capacity Coefficient 1
- 7.18536990534372, !- Total Cooling Capacity Coefficient 2
- -2.23946714486189, !- Total Cooling Capacity Coefficient 3
- 0.139995928440879, !- Total Cooling Capacity Coefficient 4
- 0.102660179888915, !- Total Cooling Capacity Coefficient 5
- 6.0019444814887, !- Sensible Cooling Capacity Coefficient 1
- 22.6300677244073, !- Sensible Cooling Capacity Coefficient 2
- -26.7960783730934, !- Sensible Cooling Capacity Coefficient 3
- -1.72374720346819, !- Sensible Cooling Capacity Coefficient 4
- 0.490644802367817, !- Sensible Cooling Capacity Coefficient 5
- 0.0693119353468141, !- Sensible Cooling Capacity Coefficient 6
- -5.67775976415698, !- Cooling Power Consumption Coefficient 1
- 0.438988156976704, !- Cooling Power Consumption Coefficient 2
- 5.845277342193, !- Cooling Power Consumption Coefficient 3
- 0.141605667000125, !- Cooling Power Consumption Coefficient 4
- -0.168727936032429, !- Cooling Power Consumption Coefficient 5
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
-
-!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:WATERTOAIRHEATPUMP:EQUATIONFIT ===========
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G SW, !- Name
- AirLoop G SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G NW, !- Name
- AirLoop G NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop Office, !- Name
- AirLoop Office Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop Office Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop Office, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop Office, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G NE, !- Name
- AirLoop G NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G N1, !- Name
- AirLoop G N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G N2, !- Name
- AirLoop G N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G S1, !- Name
- AirLoop G S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop G S2, !- Name
- AirLoop G S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop G S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop G S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop G S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 SW, !- Name
- AirLoop F2 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 NW, !- Name
- AirLoop F2 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 SE, !- Name
- AirLoop F2 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 NE, !- Name
- AirLoop F2 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 N1, !- Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 N2, !- Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 S1, !- Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F2 S2, !- Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F2 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F2 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 SW, !- Name
- AirLoop F3 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 NW, !- Name
- AirLoop F3 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 SE, !- Name
- AirLoop F3 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 NE, !- Name
- AirLoop F3 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 N1, !- Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 N2, !- Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 S1, !- Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F3 S2, !- Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F3 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F3 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 SW, !- Name
- AirLoop F4 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 NW, !- Name
- AirLoop F4 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 SE, !- Name
- AirLoop F4 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 NE, !- Name
- AirLoop F4 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 N1, !- Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 N2, !- Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 S1, !- Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F4 S2, !- Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F4 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F4 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M SW, !- Name
- AirLoop M SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M NW, !- Name
- AirLoop M NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M SE, !- Name
- AirLoop M SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M NE, !- Name
- AirLoop M NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M N1, !- Name
- AirLoop M N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M N2, !- Name
- AirLoop M N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M S1, !- Name
- AirLoop M S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop M S2, !- Name
- AirLoop M S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop M S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop M S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop M S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 SW, !- Name
- AirLoop F6 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 NW, !- Name
- AirLoop F6 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 SE, !- Name
- AirLoop F6 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 NE, !- Name
- AirLoop F6 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 N1, !- Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 N2, !- Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 S1, !- Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F6 S2, !- Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F6 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F6 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 SW, !- Name
- AirLoop F7 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 NW, !- Name
- AirLoop F7 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 SE, !- Name
- AirLoop F7 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 NE, !- Name
- AirLoop F7 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 N1, !- Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 N2, !- Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 S1, !- Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F7 S2, !- Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F7 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F7 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 SW, !- Name
- AirLoop F8 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 NW, !- Name
- AirLoop F8 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 SE, !- Name
- AirLoop F8 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 NE, !- Name
- AirLoop F8 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 N1, !- Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 N2, !- Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 S1, !- Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F8 S2, !- Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F8 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F8 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 SW, !- Name
- AirLoop F9 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 NW, !- Name
- AirLoop F9 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 SE, !- Name
- AirLoop F9 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 NE, !- Name
- AirLoop F9 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 N1, !- Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 N2, !- Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 S1, !- Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop F9 S2, !- Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop F9 S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop F9 S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T SW, !- Name
- AirLoop T SW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T SW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T SW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T SW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T NW, !- Name
- AirLoop T NW Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T NW Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T NW, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T NW, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T SE, !- Name
- AirLoop T SE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T SE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T SE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T SE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T NE, !- Name
- AirLoop T NE Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T NE Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T NE, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T NE, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T N1, !- Name
- AirLoop T N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T N1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T N1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T N1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T N2, !- Name
- AirLoop T N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T N2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T N2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T N2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T S1, !- Name
- AirLoop T S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T S1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T S1, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T S1, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
- Coil:Heating:WaterToAirHeatPump:EquationFit,
- Heat Pump HEATING Mode AirLoop T S2, !- Name
- AirLoop T S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name
- AirLoop T S2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name
- Cooling Coil Air Outlet Node AirLoop T S2, !- Air Inlet Node Name
- Heating Coil Air Outlet Node AirLoop T S2, !- Air Outlet Node Name
- autosize, !- Rated Air Flow Rate {m3/s}
- autosize, !- Rated Water Flow Rate {m3/s}
- autosize, !- Gross Rated Heating Capacity {W}
-4.3, !- Gross Rated Heating COP
- 0.237847462869254, !- Heating Capacity Coefficient 1
- -3.35823796081626, !- Heating Capacity Coefficient 2
- 3.80640467406376, !- Heating Capacity Coefficient 3
- 0.179200417311554, !- Heating Capacity Coefficient 4
- 0.12860719846082, !- Heating Capacity Coefficient 5
- -3.79175529243238, !- Heating Power Consumption Coefficient 1
- 3.38799239505527, !- Heating Power Consumption Coefficient 2
- 1.5022612076303, !- Heating Power Consumption Coefficient 3
- -0.177653510577989, !- Heating Power Consumption Coefficient 4
- -0.103079864171839; !- Heating Power Consumption Coefficient 5
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:UNITARYHEATPUMP:WATERTOAIR ===========
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G SW Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G NW Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop Office DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- Office Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop Office Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- Office, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop Office Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop Office, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop Office, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop Office, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- SupplyFan_w_SB_Sch; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G NE Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G N1 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G N1, !- Cooling Coil Name
- 0.0001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G N2 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G N2, !- Cooling Coil Name
- 0.0001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G S1 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop G S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- G S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop G S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- G S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop G S2 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop G S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop G S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop G S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F2 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F2 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F2 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F2 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F2 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F2 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F2 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F2 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F3 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F3 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F3 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F3 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F3 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F3 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F3 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F3 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F4 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F4 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F4 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F4 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F4 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F4 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F4 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F4 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M SW Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M NW Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M SE Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M NE Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M N1 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M N2 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M S1 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop M S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- M S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop M S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- M S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop M S2 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop M S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop M S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop M S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F6 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F6 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F6 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F6 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F6 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F6 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F6 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F6 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F7 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F7 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F7 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F7 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F7 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F7 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F7 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F7 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F8 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F8 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F8 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F8 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F8 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F8 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F8 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F8 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 SW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 NW Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 SE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 NE Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 N1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 N1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 N2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 N2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 S1 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop F9 S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- F9 S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop F9 S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- F9 S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop F9 S2 Supply Fan,!- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop F9 S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop F9 S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop F9 S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T SW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T SW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T SW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T SW Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T SW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T SW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T SW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T NW DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T NW Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T NW Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T NW Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T NW, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T NW, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T NW, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T SE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T SE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T SE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T SE Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T SE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T SE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T SE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T NE DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T NE Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T NE Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T NE Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T NE, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T NE, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T NE, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T N1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T N1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T N1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T N1 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T N1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T N1, !- Cooling Coil Name
- 0.0001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T N1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T N2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T N2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T N2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T N2 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T N2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T N2, !- Cooling Coil Name
- 0.0001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T N2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T S1 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T S1 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T S1 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T S1 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T S1, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T S1, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T S1, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-
- AirLoopHVAC:UnitaryHeatPump:WaterToAir,
- AirLoop T S2 DXAC Heat Pump, !- Name
- All On, !- Availability Schedule Name
- T S2 Apartment Mixed Air Outlet, !- Air Inlet Node Name
- AirLoop T S2 Supply Air Outlet, !- Air Outlet Node Name
- autosize, !- Supply Air Flow Rate {m3/s}
- T S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Air Fan Object Type
- AirLoop T S2 Supply Fan, !- Supply Air Fan Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type
- Heat Pump Heating Mode AirLoop T S2, !- Heating Coil Name
- 0.001, !- Heating Convergence
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type
- Heat Pump Cooling Mode AirLoop T S2, !- Cooling Coil Name
- 0.001, !- Cooling Convergence
- 2.5, !- Maximum Cycling Rate {cycles/hr}
- 60, !- Heat Pump Time Constant {s}
- 0.01, !- Fraction of On-Cycle Power Use
- 60, !- Heat Pump Fan Delay Time {s}
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- Heat Pump DX Supp Heating Coil AirLoop T S2, !- Supplemental Heating Coil Name
- 50, !- Maximum Supply Air Temperature from Supplemental Heater {C}
- , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
- Common OSA Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name
- BlowThrough, !- Fan Placement
- All Off; !- Supply Air Fan Operating Mode Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLER:OUTDOORAIR ===========
-
- Controller:OutdoorAir,
- AirLoop G SW OA Controller, !- Name
- G SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G SW Return Air Inlet, !- Return Air Node Name
- G SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop G NW OA Controller, !- Name
- G NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G NW Return Air Inlet, !- Return Air Node Name
- G NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- AirLoop Office OA Controller, !- Name
- Office Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop Office Return Air Inlet, !- Return Air Node Name
- Office Mixed Air Outlet, !- Mixed Air Node Name
- Office Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type,
- FixedMinimum, !- Minimum Limit Type
- , !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- ; !- Minimum Fraction of Outdoor Air Schedule Name
-!- Heat Recovery Bypass Control Type
- Controller:OutdoorAir,
- AirLoop G NE OA Controller, !- Name
- G NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G NE Return Air Inlet, !- Return Air Node Name
- G NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop G N1 OA Controller, !- Name
- G N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G N1 Return Air Inlet, !- Return Air Node Name
- G N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop G N2 OA Controller, !- Name
- G N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G N2 Return Air Inlet, !- Return Air Node Name
- G N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop G S1 OA Controller, !- Name
- G S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G S1 Return Air Inlet, !- Return Air Node Name
- G S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop G S2 OA Controller, !- Name
- G S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop G S2 Return Air Inlet, !- Return Air Node Name
- G S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- G S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 SW OA Controller, !- Name
- F2 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 SW Return Air Inlet, !- Return Air Node Name
- F2 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 NW OA Controller, !- Name
- F2 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 NW Return Air Inlet, !- Return Air Node Name
- F2 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 SE OA Controller, !- Name
- F2 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 SE Return Air Inlet, !- Return Air Node Name
- F2 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 NE OA Controller, !- Name
- F2 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 NE Return Air Inlet, !- Return Air Node Name
- F2 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 N1 OA Controller, !- Name
- F2 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 N1 Return Air Inlet, !- Return Air Node Name
- F2 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 N2 OA Controller, !- Name
- F2 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 N2 Return Air Inlet, !- Return Air Node Name
- F2 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 S1 OA Controller, !- Name
- F2 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 S1 Return Air Inlet, !- Return Air Node Name
- F2 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F2 S2 OA Controller, !- Name
- F2 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F2 S2 Return Air Inlet, !- Return Air Node Name
- F2 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F2 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 SW OA Controller, !- Name
- F3 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 SW Return Air Inlet, !- Return Air Node Name
- F3 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 NW OA Controller, !- Name
- F3 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 NW Return Air Inlet, !- Return Air Node Name
- F3 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 SE OA Controller, !- Name
- F3 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 SE Return Air Inlet, !- Return Air Node Name
- F3 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 NE OA Controller, !- Name
- F3 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 NE Return Air Inlet, !- Return Air Node Name
- F3 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 N1 OA Controller, !- Name
- F3 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 N1 Return Air Inlet, !- Return Air Node Name
- F3 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 N2 OA Controller, !- Name
- F3 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 N2 Return Air Inlet, !- Return Air Node Name
- F3 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 S1 OA Controller, !- Name
- F3 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 S1 Return Air Inlet, !- Return Air Node Name
- F3 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F3 S2 OA Controller, !- Name
- F3 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F3 S2 Return Air Inlet, !- Return Air Node Name
- F3 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F3 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 SW OA Controller, !- Name
- F4 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 SW Return Air Inlet, !- Return Air Node Name
- F4 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 NW OA Controller, !- Name
- F4 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 NW Return Air Inlet, !- Return Air Node Name
- F4 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 SE OA Controller, !- Name
- F4 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 SE Return Air Inlet, !- Return Air Node Name
- F4 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 NE OA Controller, !- Name
- F4 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 NE Return Air Inlet, !- Return Air Node Name
- F4 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 N1 OA Controller, !- Name
- F4 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 N1 Return Air Inlet, !- Return Air Node Name
- F4 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 N2 OA Controller, !- Name
- F4 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 N2 Return Air Inlet, !- Return Air Node Name
- F4 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 S1 OA Controller, !- Name
- F4 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 S1 Return Air Inlet, !- Return Air Node Name
- F4 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F4 S2 OA Controller, !- Name
- F4 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F4 S2 Return Air Inlet, !- Return Air Node Name
- F4 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F4 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M SW OA Controller, !- Name
- M SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M SW Return Air Inlet, !- Return Air Node Name
- M SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M NW OA Controller, !- Name
- M NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M NW Return Air Inlet, !- Return Air Node Name
- M NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M SE OA Controller, !- Name
- M SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M SE Return Air Inlet, !- Return Air Node Name
- M SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M NE OA Controller, !- Name
- M NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M NE Return Air Inlet, !- Return Air Node Name
- M NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M N1 OA Controller, !- Name
- M N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M N1 Return Air Inlet, !- Return Air Node Name
- M N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M N2 OA Controller, !- Name
- M N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M N2 Return Air Inlet, !- Return Air Node Name
- M N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M S1 OA Controller, !- Name
- M S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M S1 Return Air Inlet, !- Return Air Node Name
- M S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop M S2 OA Controller, !- Name
- M S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop M S2 Return Air Inlet, !- Return Air Node Name
- M S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- M S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 SW OA Controller, !- Name
- F6 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 SW Return Air Inlet, !- Return Air Node Name
- F6 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 NW OA Controller, !- Name
- F6 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 NW Return Air Inlet, !- Return Air Node Name
- F6 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 SE OA Controller, !- Name
- F6 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 SE Return Air Inlet, !- Return Air Node Name
- F6 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 NE OA Controller, !- Name
- F6 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 NE Return Air Inlet, !- Return Air Node Name
- F6 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 N1 OA Controller, !- Name
- F6 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 N1 Return Air Inlet, !- Return Air Node Name
- F6 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 N2 OA Controller, !- Name
- F6 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 N2 Return Air Inlet, !- Return Air Node Name
- F6 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 S1 OA Controller, !- Name
- F6 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 S1 Return Air Inlet, !- Return Air Node Name
- F6 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F6 S2 OA Controller, !- Name
- F6 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F6 S2 Return Air Inlet, !- Return Air Node Name
- F6 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F6 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 SW OA Controller, !- Name
- F7 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 SW Return Air Inlet, !- Return Air Node Name
- F7 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 NW OA Controller, !- Name
- F7 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 NW Return Air Inlet, !- Return Air Node Name
- F7 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 SE OA Controller, !- Name
- F7 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 SE Return Air Inlet, !- Return Air Node Name
- F7 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 NE OA Controller, !- Name
- F7 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 NE Return Air Inlet, !- Return Air Node Name
- F7 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 N1 OA Controller, !- Name
- F7 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 N1 Return Air Inlet, !- Return Air Node Name
- F7 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 N2 OA Controller, !- Name
- F7 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 N2 Return Air Inlet, !- Return Air Node Name
- F7 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 S1 OA Controller, !- Name
- F7 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 S1 Return Air Inlet, !- Return Air Node Name
- F7 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F7 S2 OA Controller, !- Name
- F7 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F7 S2 Return Air Inlet, !- Return Air Node Name
- F7 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F7 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 SW OA Controller, !- Name
- F8 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 SW Return Air Inlet, !- Return Air Node Name
- F8 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 NW OA Controller, !- Name
- F8 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 NW Return Air Inlet, !- Return Air Node Name
- F8 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 SE OA Controller, !- Name
- F8 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 SE Return Air Inlet, !- Return Air Node Name
- F8 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 NE OA Controller, !- Name
- F8 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 NE Return Air Inlet, !- Return Air Node Name
- F8 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 N1 OA Controller, !- Name
- F8 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 N1 Return Air Inlet, !- Return Air Node Name
- F8 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 N2 OA Controller, !- Name
- F8 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 N2 Return Air Inlet, !- Return Air Node Name
- F8 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 S1 OA Controller, !- Name
- F8 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 S1 Return Air Inlet, !- Return Air Node Name
- F8 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F8 S2 OA Controller, !- Name
- F8 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F8 S2 Return Air Inlet, !- Return Air Node Name
- F8 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F8 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 SW OA Controller, !- Name
- F9 SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 SW Return Air Inlet, !- Return Air Node Name
- F9 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 NW OA Controller, !- Name
- F9 NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 NW Return Air Inlet, !- Return Air Node Name
- F9 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 SE OA Controller, !- Name
- F9 SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 SE Return Air Inlet, !- Return Air Node Name
- F9 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 NE OA Controller, !- Name
- F9 NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 NE Return Air Inlet, !- Return Air Node Name
- F9 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 N1 OA Controller, !- Name
- F9 N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 N1 Return Air Inlet, !- Return Air Node Name
- F9 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 N2 OA Controller, !- Name
- F9 N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 N2 Return Air Inlet, !- Return Air Node Name
- F9 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 S1 OA Controller, !- Name
- F9 S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 S1 Return Air Inlet, !- Return Air Node Name
- F9 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop F9 S2 OA Controller, !- Name
- F9 S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop F9 S2 Return Air Inlet, !- Return Air Node Name
- F9 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- F9 S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T SW OA Controller, !- Name
- T SW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T SW Return Air Inlet, !- Return Air Node Name
- T SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T SW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T NW OA Controller, !- Name
- T NW Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T NW Return Air Inlet, !- Return Air Node Name
- T NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T NW Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T SE OA Controller, !- Name
- T SE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T SE Return Air Inlet, !- Return Air Node Name
- T SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T SE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T NE OA Controller, !- Name
- T NE Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T NE Return Air Inlet, !- Return Air Node Name
- T NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T NE Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T N1 OA Controller, !- Name
- T N1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T N1 Return Air Inlet, !- Return Air Node Name
- T N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T N1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T N2 OA Controller, !- Name
- T N2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T N2 Return Air Inlet, !- Return Air Node Name
- T N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T N2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T S1 OA Controller, !- Name
- T S1 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T S1 Return Air Inlet, !- Return Air Node Name
- T S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T S1 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
- Controller:OutdoorAir,
- AirLoop T S2 OA Controller, !- Name
- T S2 Apartment Relief Air Outlet, !- Relief Air Outlet Node Name
- AirLoop T S2 Return Air Inlet, !- Return Air Node Name
- T S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
- T S2 Apartment Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- No, !- High Humidity Control
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:CONTROLLERLIST ===========
-
- AirLoopHVAC:ControllerList,
- AirLoop G SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop G NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop Office OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop Office OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop G NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop G N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop G N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop G S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop G S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop G S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F2 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F2 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F3 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F3 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F4 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F4 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop M S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop M S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F6 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F6 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F7 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F7 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F8 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F8 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop F9 S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop F9 S2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T SW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T SW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T NW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T NW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T SE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T SE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T NE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T NE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T N1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T N1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T N2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T N2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T S1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T S1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- AirLoop T S2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- AirLoop T S2 OA Controller; !- Controller 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC ===========
-
- AirLoopHVAC,
- AirLoop G SW, !- Name
- , !- Controller List Name
- AirLoop G SW Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop G NW, !- Name
- , !- Controller List Name
- AirLoop G NW Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop Office, !- Name
- , !- Controller List Name
- AirLoop Office Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop Office Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop Office Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer Office Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter Office Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop Office Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop G NE, !- Name
- , !- Controller List Name
- AirLoop G NE Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop G N1, !- Name
- , !- Controller List Name
- AirLoop G N1 Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop G N2, !- Name
- , !- Controller List Name
- AirLoop G N2 Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop G S1, !- Name
- , !- Controller List Name
- AirLoop G S1 Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop G S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop G S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop G S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer G S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter G S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop G S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F2 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F2 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F2 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F2 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F2 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F2 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F3 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F3 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F3 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F3 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F3 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F3 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F4 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F4 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F4 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F4 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F4 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F4 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop M S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop M S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop M S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer M S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter M S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop M S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F6 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F6 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F6 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F6 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F6 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F6 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F7 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F7 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F7 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F7 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F7 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F7 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F8 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F8 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F8 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F8 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F8 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F8 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop F9 S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop F9 S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop F9 S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer F9 S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter F9 S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop F9 S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T SW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T SW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T SW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T SW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T SW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T SW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T NW, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T NW Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T NW Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T NW Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T NW Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T NW Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T SE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T SE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T SE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T SE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T SE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T SE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T NE, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T NE Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T NE Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T NE Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T NE Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T NE Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T N1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T N1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T N1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T N1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T N1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T N1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T N2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T N2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T N2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T N2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T N2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T N2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T S1, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T S1 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T S1 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T S1 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T S1 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T S1 Supply Air Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- AirLoop T S2, !- Name
- , !- Controller List Name
- AirLoop AllApts Availability Manager, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- AirLoop T S2 Branches, !- Branch List Name
- , !- Connector List Name
- AirLoop T S2 Return Air Inlet, !- Supply Side Inlet Node Name
- ZoneMixer T S2 Return Air Outlet, !- Demand Side Outlet Node Name
- ZoneSplitter T S2 Supply Air Inlet, !- Demand Side Inlet Node Names
- AirLoop T S2 Supply Air Outlet; !- Supply Side Outlet Node Names
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM:EQUIPMENTLIST ===========
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G SW Apartment OA Mixing Box; !- Component 1 Name
-
-
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop Office OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Office OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop G S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- G S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F2 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F2 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F3 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F3 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F4 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F4 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop M S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- M S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F6 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F6 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F7 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F7 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F8 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F8 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop F9 S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- F9 S2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T SW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T SW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T NW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T NW Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T SE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T SE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T NE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T NE Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T N1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T N1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T N2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T N2 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T S1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T S1 Apartment OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- AirLoop T S2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- T S2 Apartment OA Mixing Box; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM ===========
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G SW OA System, !- Name
- AirLoop G SW OA System Controllers, !- Controller List Name
- AirLoop G SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G SW Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G NW OA System, !- Name
- AirLoop G NW OA System Controllers, !- Controller List Name
- AirLoop G NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G NW Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop Office OA System,!- Name
- AirLoop Office OA System Controllers, !- Controller List Name
- AirLoop Office OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop Office Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G NE OA System, !- Name
- AirLoop G NE OA System Controllers, !- Controller List Name
- AirLoop G NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G NE Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G N1 OA System, !- Name
- AirLoop G N1 OA System Controllers, !- Controller List Name
- AirLoop G N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G N1 Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G N2 OA System, !- Name
- AirLoop G N2 OA System Controllers, !- Controller List Name
- AirLoop G N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G N2 Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G S1 OA System, !- Name
- AirLoop G S1 OA System Controllers, !- Controller List Name
- AirLoop G S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G S1 Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop G S2 OA System, !- Name
- AirLoop G S2 OA System Controllers, !- Controller List Name
- AirLoop G S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop G S2 Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 SW OA System, !- Name
- AirLoop F2 SW OA System Controllers, !- Controller List Name
- AirLoop F2 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 NW OA System, !- Name
- AirLoop F2 NW OA System Controllers, !- Controller List Name
- AirLoop F2 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 SE OA System, !- Name
- AirLoop F2 SE OA System Controllers, !- Controller List Name
- AirLoop F2 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 NE OA System, !- Name
- AirLoop F2 NE OA System Controllers, !- Controller List Name
- AirLoop F2 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 N1 OA System, !- Name
- AirLoop F2 N1 OA System Controllers, !- Controller List Name
- AirLoop F2 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 N2 OA System, !- Name
- AirLoop F2 N2 OA System Controllers, !- Controller List Name
- AirLoop F2 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 S1 OA System, !- Name
- AirLoop F2 S1 OA System Controllers, !- Controller List Name
- AirLoop F2 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F2 S2 OA System, !- Name
- AirLoop F2 S2 OA System Controllers, !- Controller List Name
- AirLoop F2 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 SW OA System, !- Name
- AirLoop F3 SW OA System Controllers, !- Controller List Name
- AirLoop F3 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 NW OA System, !- Name
- AirLoop F3 NW OA System Controllers, !- Controller List Name
- AirLoop F3 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 SE OA System, !- Name
- AirLoop F3 SE OA System Controllers, !- Controller List Name
- AirLoop F3 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 NE OA System, !- Name
- AirLoop F3 NE OA System Controllers, !- Controller List Name
- AirLoop F3 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 N1 OA System, !- Name
- AirLoop F3 N1 OA System Controllers, !- Controller List Name
- AirLoop F3 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 N2 OA System, !- Name
- AirLoop F3 N2 OA System Controllers, !- Controller List Name
- AirLoop F3 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 S1 OA System, !- Name
- AirLoop F3 S1 OA System Controllers, !- Controller List Name
- AirLoop F3 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F3 S2 OA System, !- Name
- AirLoop F3 S2 OA System Controllers, !- Controller List Name
- AirLoop F3 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 SW OA System, !- Name
- AirLoop F4 SW OA System Controllers, !- Controller List Name
- AirLoop F4 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 NW OA System, !- Name
- AirLoop F4 NW OA System Controllers, !- Controller List Name
- AirLoop F4 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 SE OA System, !- Name
- AirLoop F4 SE OA System Controllers, !- Controller List Name
- AirLoop F4 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 NE OA System, !- Name
- AirLoop F4 NE OA System Controllers, !- Controller List Name
- AirLoop F4 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 N1 OA System, !- Name
- AirLoop F4 N1 OA System Controllers, !- Controller List Name
- AirLoop F4 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 N2 OA System, !- Name
- AirLoop F4 N2 OA System Controllers, !- Controller List Name
- AirLoop F4 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 S1 OA System, !- Name
- AirLoop F4 S1 OA System Controllers, !- Controller List Name
- AirLoop F4 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F4 S2 OA System, !- Name
- AirLoop F4 S2 OA System Controllers, !- Controller List Name
- AirLoop F4 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M SW OA System, !- Name
- AirLoop M SW OA System Controllers, !- Controller List Name
- AirLoop M SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M NW OA System, !- Name
- AirLoop M NW OA System Controllers, !- Controller List Name
- AirLoop M NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M SE OA System, !- Name
- AirLoop M SE OA System Controllers, !- Controller List Name
- AirLoop M SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M NE OA System, !- Name
- AirLoop M NE OA System Controllers, !- Controller List Name
- AirLoop M NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M N1 OA System, !- Name
- AirLoop M N1 OA System Controllers, !- Controller List Name
- AirLoop M N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M N2 OA System, !- Name
- AirLoop M N2 OA System Controllers, !- Controller List Name
- AirLoop M N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M S1 OA System, !- Name
- AirLoop M S1 OA System Controllers, !- Controller List Name
- AirLoop M S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop M S2 OA System, !- Name
- AirLoop M S2 OA System Controllers, !- Controller List Name
- AirLoop M S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 SW OA System, !- Name
- AirLoop F6 SW OA System Controllers, !- Controller List Name
- AirLoop F6 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 NW OA System, !- Name
- AirLoop F6 NW OA System Controllers, !- Controller List Name
- AirLoop F6 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 SE OA System, !- Name
- AirLoop F6 SE OA System Controllers, !- Controller List Name
- AirLoop F6 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 NE OA System, !- Name
- AirLoop F6 NE OA System Controllers, !- Controller List Name
- AirLoop F6 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 N1 OA System, !- Name
- AirLoop F6 N1 OA System Controllers, !- Controller List Name
- AirLoop F6 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 N2 OA System, !- Name
- AirLoop F6 N2 OA System Controllers, !- Controller List Name
- AirLoop F6 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 S1 OA System, !- Name
- AirLoop F6 S1 OA System Controllers, !- Controller List Name
- AirLoop F6 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F6 S2 OA System, !- Name
- AirLoop F6 S2 OA System Controllers, !- Controller List Name
- AirLoop F6 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 SW OA System, !- Name
- AirLoop F7 SW OA System Controllers, !- Controller List Name
- AirLoop F7 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 NW OA System, !- Name
- AirLoop F7 NW OA System Controllers, !- Controller List Name
- AirLoop F7 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 SE OA System, !- Name
- AirLoop F7 SE OA System Controllers, !- Controller List Name
- AirLoop F7 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 NE OA System, !- Name
- AirLoop F7 NE OA System Controllers, !- Controller List Name
- AirLoop F7 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 N1 OA System, !- Name
- AirLoop F7 N1 OA System Controllers, !- Controller List Name
- AirLoop F7 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 N2 OA System, !- Name
- AirLoop F7 N2 OA System Controllers, !- Controller List Name
- AirLoop F7 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 S1 OA System, !- Name
- AirLoop F7 S1 OA System Controllers, !- Controller List Name
- AirLoop F7 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F7 S2 OA System, !- Name
- AirLoop F7 S2 OA System Controllers, !- Controller List Name
- AirLoop F7 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 SW OA System, !- Name
- AirLoop F8 SW OA System Controllers, !- Controller List Name
- AirLoop F8 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 NW OA System, !- Name
- AirLoop F8 NW OA System Controllers, !- Controller List Name
- AirLoop F8 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 SE OA System, !- Name
- AirLoop F8 SE OA System Controllers, !- Controller List Name
- AirLoop F8 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 NE OA System, !- Name
- AirLoop F8 NE OA System Controllers, !- Controller List Name
- AirLoop F8 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 N1 OA System, !- Name
- AirLoop F8 N1 OA System Controllers, !- Controller List Name
- AirLoop F8 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 N2 OA System, !- Name
- AirLoop F8 N2 OA System Controllers, !- Controller List Name
- AirLoop F8 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 S1 OA System, !- Name
- AirLoop F8 S1 OA System Controllers, !- Controller List Name
- AirLoop F8 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F8 S2 OA System, !- Name
- AirLoop F8 S2 OA System Controllers, !- Controller List Name
- AirLoop F8 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 SW OA System, !- Name
- AirLoop F9 SW OA System Controllers, !- Controller List Name
- AirLoop F9 SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 NW OA System, !- Name
- AirLoop F9 NW OA System Controllers, !- Controller List Name
- AirLoop F9 NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 SE OA System, !- Name
- AirLoop F9 SE OA System Controllers, !- Controller List Name
- AirLoop F9 SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 NE OA System, !- Name
- AirLoop F9 NE OA System Controllers, !- Controller List Name
- AirLoop F9 NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 N1 OA System, !- Name
- AirLoop F9 N1 OA System Controllers, !- Controller List Name
- AirLoop F9 N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 N2 OA System, !- Name
- AirLoop F9 N2 OA System Controllers, !- Controller List Name
- AirLoop F9 N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 S1 OA System, !- Name
- AirLoop F9 S1 OA System Controllers, !- Controller List Name
- AirLoop F9 S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop F9 S2 OA System, !- Name
- AirLoop F9 S2 OA System Controllers, !- Controller List Name
- AirLoop F9 S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T SW OA System, !- Name
- AirLoop T SW OA System Controllers, !- Controller List Name
- AirLoop T SW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T NW OA System, !- Name
- AirLoop T NW OA System Controllers, !- Controller List Name
- AirLoop T NW OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T SE OA System, !- Name
- AirLoop T SE OA System Controllers, !- Controller List Name
- AirLoop T SE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T NE OA System, !- Name
- AirLoop T NE OA System Controllers, !- Controller List Name
- AirLoop T NE OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T N1 OA System, !- Name
- AirLoop T N1 OA System Controllers, !- Controller List Name
- AirLoop T N1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T N2 OA System, !- Name
- AirLoop T N2 OA System Controllers, !- Controller List Name
- AirLoop T N2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T S1 OA System, !- Name
- AirLoop T S1 OA System Controllers, !- Controller List Name
- AirLoop T S1 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- AirLoop T S2 OA System, !- Name
- AirLoop T S2 OA System Controllers, !- Controller List Name
- AirLoop T S2 OA System Equipment, !- Outdoor Air Equipment List Name
- AirLoop AllApts Availability Manager; !- Availability Manager List Name
-
-!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:MIXER ===========
-
-
- OutdoorAir:Mixer,
- G SW Apartment OA Mixing Box, !- Name
- G SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
-
-
- G SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G SW Return Air Inlet; !- Return Air Stream Node Name
-
-
- OutdoorAir:Mixer,
- G NW Apartment OA Mixing Box, !- Name
- G NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- G NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G NW Return Air Inlet; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- Office OA Mixing Box, !- Name
- Office Mixed Air Outlet, !- Mixed Air Node Name
- Office Outside Air Inlet, !- Outdoor Air Stream Node Name
- Office Relief Air Outlet,!- Relief Air Stream Node Name
- AirLoop Office Return Air Inlet; !- Return Air Stream Node Name
-
-
- OutdoorAir:Mixer,
- G NE Apartment OA Mixing Box, !- Name
- G NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- G NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- G N1 Apartment OA Mixing Box, !- Name
- G N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- G N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- G N2 Apartment OA Mixing Box, !- Name
- G N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- G N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- G S1 Apartment OA Mixing Box, !- Name
- G S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- G S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- G S2 Apartment OA Mixing Box, !- Name
- G S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- G S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- G S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop G S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 SW Apartment OA Mixing Box, !- Name
- F2 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 NW Apartment OA Mixing Box, !- Name
- F2 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 SE Apartment OA Mixing Box, !- Name
- F2 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 NE Apartment OA Mixing Box, !- Name
- F2 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 N1 Apartment OA Mixing Box, !- Name
- F2 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 N2 Apartment OA Mixing Box, !- Name
- F2 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 S1 Apartment OA Mixing Box, !- Name
- F2 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F2 S2 Apartment OA Mixing Box, !- Name
- F2 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F2 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F2 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F2 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 SW Apartment OA Mixing Box, !- Name
- F3 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 NW Apartment OA Mixing Box, !- Name
- F3 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 SE Apartment OA Mixing Box, !- Name
- F3 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 NE Apartment OA Mixing Box, !- Name
- F3 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 N1 Apartment OA Mixing Box, !- Name
- F3 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 N2 Apartment OA Mixing Box, !- Name
- F3 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 S1 Apartment OA Mixing Box, !- Name
- F3 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F3 S2 Apartment OA Mixing Box, !- Name
- F3 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F3 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F3 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F3 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 SW Apartment OA Mixing Box, !- Name
- F4 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 NW Apartment OA Mixing Box, !- Name
- F4 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 SE Apartment OA Mixing Box, !- Name
- F4 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 NE Apartment OA Mixing Box, !- Name
- F4 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 N1 Apartment OA Mixing Box, !- Name
- F4 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 N2 Apartment OA Mixing Box, !- Name
- F4 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 S1 Apartment OA Mixing Box, !- Name
- F4 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F4 S2 Apartment OA Mixing Box, !- Name
- F4 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F4 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F4 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F4 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M SW Apartment OA Mixing Box, !- Name
- M SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M NW Apartment OA Mixing Box, !- Name
- M NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M SE Apartment OA Mixing Box, !- Name
- M SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M NE Apartment OA Mixing Box, !- Name
- M NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M N1 Apartment OA Mixing Box, !- Name
- M N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M N2 Apartment OA Mixing Box, !- Name
- M N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M S1 Apartment OA Mixing Box, !- Name
- M S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- M S2 Apartment OA Mixing Box, !- Name
- M S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- M S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- M S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop M S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 SW Apartment OA Mixing Box, !- Name
- F6 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 NW Apartment OA Mixing Box, !- Name
- F6 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 SE Apartment OA Mixing Box, !- Name
- F6 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 NE Apartment OA Mixing Box, !- Name
- F6 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 N1 Apartment OA Mixing Box, !- Name
- F6 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 N2 Apartment OA Mixing Box, !- Name
- F6 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 S1 Apartment OA Mixing Box, !- Name
- F6 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F6 S2 Apartment OA Mixing Box, !- Name
- F6 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F6 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F6 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F6 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 SW Apartment OA Mixing Box, !- Name
- F7 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 NW Apartment OA Mixing Box, !- Name
- F7 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 SE Apartment OA Mixing Box, !- Name
- F7 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 NE Apartment OA Mixing Box, !- Name
- F7 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 N1 Apartment OA Mixing Box, !- Name
- F7 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 N2 Apartment OA Mixing Box, !- Name
- F7 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 S1 Apartment OA Mixing Box, !- Name
- F7 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F7 S2 Apartment OA Mixing Box, !- Name
- F7 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F7 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F7 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F7 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 SW Apartment OA Mixing Box, !- Name
- F8 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 NW Apartment OA Mixing Box, !- Name
- F8 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 SE Apartment OA Mixing Box, !- Name
- F8 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 NE Apartment OA Mixing Box, !- Name
- F8 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 N1 Apartment OA Mixing Box, !- Name
- F8 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 N2 Apartment OA Mixing Box, !- Name
- F8 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 S1 Apartment OA Mixing Box, !- Name
- F8 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F8 S2 Apartment OA Mixing Box, !- Name
- F8 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F8 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F8 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F8 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 SW Apartment OA Mixing Box, !- Name
- F9 SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 NW Apartment OA Mixing Box, !- Name
- F9 NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 SE Apartment OA Mixing Box, !- Name
- F9 SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 NE Apartment OA Mixing Box, !- Name
- F9 NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 N1 Apartment OA Mixing Box, !- Name
- F9 N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 N2 Apartment OA Mixing Box, !- Name
- F9 N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 S1 Apartment OA Mixing Box, !- Name
- F9 S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- F9 S2 Apartment OA Mixing Box, !- Name
- F9 S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- F9 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- F9 S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop F9 S2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T SW Apartment OA Mixing Box, !- Name
- T SW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T SW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T SW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T NW Apartment OA Mixing Box, !- Name
- T NW Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T NW Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T NW Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T SE Apartment OA Mixing Box, !- Name
- T SE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T SE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T SE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T NE Apartment OA Mixing Box, !- Name
- T NE Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T NE Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T NE Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T N1 Apartment OA Mixing Box, !- Name
- T N1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T N1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T N1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T N2 Apartment OA Mixing Box, !- Name
- T N2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T N2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T N2 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T S1 Apartment OA Mixing Box, !- Name
- T S1 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T S1 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T S1 Return Air Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- T S2 Apartment OA Mixing Box, !- Name
- T S2 Apartment Mixed Air Outlet, !- Mixed Air Node Name
-
- T S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name
- T S2 Apartment Relief Air Outlet, !- Relief Air Stream Node Name
- AirLoop T S2 Return Air Inlet; !- Return Air Stream Node Name
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER ===========
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G SW Zone Splitter, !- Name
- ZoneSplitter G SW Supply Air Inlet, !- Inlet Node Name
- G SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G NW Zone Splitter, !- Name
- ZoneSplitter G NW Supply Air Inlet, !- Inlet Node Name
- G NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop Office Zone Splitter, !- Name
- ZoneSplitter Office Supply Air Inlet, !- Inlet Node Name
- Office Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G NE Zone Splitter, !- Name
- ZoneSplitter G NE Supply Air Inlet, !- Inlet Node Name
- G NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G N1 Zone Splitter, !- Name
- ZoneSplitter G N1 Supply Air Inlet, !- Inlet Node Name
- G N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G N2 Zone Splitter, !- Name
- ZoneSplitter G N2 Supply Air Inlet, !- Inlet Node Name
- G N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G S1 Zone Splitter, !- Name
- ZoneSplitter G S1 Supply Air Inlet, !- Inlet Node Name
- G S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop G S2 Zone Splitter, !- Name
- ZoneSplitter G S2 Supply Air Inlet, !- Inlet Node Name
- G S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 SW Zone Splitter, !- Name
- ZoneSplitter F2 SW Supply Air Inlet, !- Inlet Node Name
- F2 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 NW Zone Splitter, !- Name
- ZoneSplitter F2 NW Supply Air Inlet, !- Inlet Node Name
- F2 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 SE Zone Splitter, !- Name
- ZoneSplitter F2 SE Supply Air Inlet, !- Inlet Node Name
- F2 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 NE Zone Splitter, !- Name
- ZoneSplitter F2 NE Supply Air Inlet, !- Inlet Node Name
- F2 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 N1 Zone Splitter, !- Name
- ZoneSplitter F2 N1 Supply Air Inlet, !- Inlet Node Name
- F2 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 N2 Zone Splitter, !- Name
- ZoneSplitter F2 N2 Supply Air Inlet, !- Inlet Node Name
- F2 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 S1 Zone Splitter, !- Name
- ZoneSplitter F2 S1 Supply Air Inlet, !- Inlet Node Name
- F2 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F2 S2 Zone Splitter, !- Name
- ZoneSplitter F2 S2 Supply Air Inlet, !- Inlet Node Name
- F2 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 SW Zone Splitter, !- Name
- ZoneSplitter F3 SW Supply Air Inlet, !- Inlet Node Name
- F3 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 NW Zone Splitter, !- Name
- ZoneSplitter F3 NW Supply Air Inlet, !- Inlet Node Name
- F3 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 SE Zone Splitter, !- Name
- ZoneSplitter F3 SE Supply Air Inlet, !- Inlet Node Name
- F3 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 NE Zone Splitter, !- Name
- ZoneSplitter F3 NE Supply Air Inlet, !- Inlet Node Name
- F3 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 N1 Zone Splitter, !- Name
- ZoneSplitter F3 N1 Supply Air Inlet, !- Inlet Node Name
- F3 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 N2 Zone Splitter, !- Name
- ZoneSplitter F3 N2 Supply Air Inlet, !- Inlet Node Name
- F3 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 S1 Zone Splitter, !- Name
- ZoneSplitter F3 S1 Supply Air Inlet, !- Inlet Node Name
- F3 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F3 S2 Zone Splitter, !- Name
- ZoneSplitter F3 S2 Supply Air Inlet, !- Inlet Node Name
- F3 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 SW Zone Splitter, !- Name
- ZoneSplitter F4 SW Supply Air Inlet, !- Inlet Node Name
- F4 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 NW Zone Splitter, !- Name
- ZoneSplitter F4 NW Supply Air Inlet, !- Inlet Node Name
- F4 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 SE Zone Splitter, !- Name
- ZoneSplitter F4 SE Supply Air Inlet, !- Inlet Node Name
- F4 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 NE Zone Splitter, !- Name
- ZoneSplitter F4 NE Supply Air Inlet, !- Inlet Node Name
- F4 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 N1 Zone Splitter, !- Name
- ZoneSplitter F4 N1 Supply Air Inlet, !- Inlet Node Name
- F4 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 N2 Zone Splitter, !- Name
- ZoneSplitter F4 N2 Supply Air Inlet, !- Inlet Node Name
- F4 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 S1 Zone Splitter, !- Name
- ZoneSplitter F4 S1 Supply Air Inlet, !- Inlet Node Name
- F4 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F4 S2 Zone Splitter, !- Name
- ZoneSplitter F4 S2 Supply Air Inlet, !- Inlet Node Name
- F4 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M SW Zone Splitter, !- Name
- ZoneSplitter M SW Supply Air Inlet, !- Inlet Node Name
- M SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M NW Zone Splitter, !- Name
- ZoneSplitter M NW Supply Air Inlet, !- Inlet Node Name
- M NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M SE Zone Splitter, !- Name
- ZoneSplitter M SE Supply Air Inlet, !- Inlet Node Name
- M SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M NE Zone Splitter, !- Name
- ZoneSplitter M NE Supply Air Inlet, !- Inlet Node Name
- M NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M N1 Zone Splitter, !- Name
- ZoneSplitter M N1 Supply Air Inlet, !- Inlet Node Name
- M N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M N2 Zone Splitter, !- Name
- ZoneSplitter M N2 Supply Air Inlet, !- Inlet Node Name
- M N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M S1 Zone Splitter, !- Name
- ZoneSplitter M S1 Supply Air Inlet, !- Inlet Node Name
- M S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop M S2 Zone Splitter, !- Name
- ZoneSplitter M S2 Supply Air Inlet, !- Inlet Node Name
- M S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 SW Zone Splitter, !- Name
- ZoneSplitter F6 SW Supply Air Inlet, !- Inlet Node Name
- F6 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 NW Zone Splitter, !- Name
- ZoneSplitter F6 NW Supply Air Inlet, !- Inlet Node Name
- F6 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 SE Zone Splitter, !- Name
- ZoneSplitter F6 SE Supply Air Inlet, !- Inlet Node Name
- F6 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 NE Zone Splitter, !- Name
- ZoneSplitter F6 NE Supply Air Inlet, !- Inlet Node Name
- F6 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 N1 Zone Splitter, !- Name
- ZoneSplitter F6 N1 Supply Air Inlet, !- Inlet Node Name
- F6 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 N2 Zone Splitter, !- Name
- ZoneSplitter F6 N2 Supply Air Inlet, !- Inlet Node Name
- F6 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 S1 Zone Splitter, !- Name
- ZoneSplitter F6 S1 Supply Air Inlet, !- Inlet Node Name
- F6 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F6 S2 Zone Splitter, !- Name
- ZoneSplitter F6 S2 Supply Air Inlet, !- Inlet Node Name
- F6 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 SW Zone Splitter, !- Name
- ZoneSplitter F7 SW Supply Air Inlet, !- Inlet Node Name
- F7 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 NW Zone Splitter, !- Name
- ZoneSplitter F7 NW Supply Air Inlet, !- Inlet Node Name
- F7 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 SE Zone Splitter, !- Name
- ZoneSplitter F7 SE Supply Air Inlet, !- Inlet Node Name
- F7 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 NE Zone Splitter, !- Name
- ZoneSplitter F7 NE Supply Air Inlet, !- Inlet Node Name
- F7 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 N1 Zone Splitter, !- Name
- ZoneSplitter F7 N1 Supply Air Inlet, !- Inlet Node Name
- F7 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 N2 Zone Splitter, !- Name
- ZoneSplitter F7 N2 Supply Air Inlet, !- Inlet Node Name
- F7 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 S1 Zone Splitter, !- Name
- ZoneSplitter F7 S1 Supply Air Inlet, !- Inlet Node Name
- F7 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F7 S2 Zone Splitter, !- Name
- ZoneSplitter F7 S2 Supply Air Inlet, !- Inlet Node Name
- F7 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 SW Zone Splitter, !- Name
- ZoneSplitter F8 SW Supply Air Inlet, !- Inlet Node Name
- F8 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 NW Zone Splitter, !- Name
- ZoneSplitter F8 NW Supply Air Inlet, !- Inlet Node Name
- F8 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 SE Zone Splitter, !- Name
- ZoneSplitter F8 SE Supply Air Inlet, !- Inlet Node Name
- F8 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 NE Zone Splitter, !- Name
- ZoneSplitter F8 NE Supply Air Inlet, !- Inlet Node Name
- F8 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 N1 Zone Splitter, !- Name
- ZoneSplitter F8 N1 Supply Air Inlet, !- Inlet Node Name
- F8 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 N2 Zone Splitter, !- Name
- ZoneSplitter F8 N2 Supply Air Inlet, !- Inlet Node Name
- F8 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 S1 Zone Splitter, !- Name
- ZoneSplitter F8 S1 Supply Air Inlet, !- Inlet Node Name
- F8 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F8 S2 Zone Splitter, !- Name
- ZoneSplitter F8 S2 Supply Air Inlet, !- Inlet Node Name
- F8 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 SW Zone Splitter, !- Name
- ZoneSplitter F9 SW Supply Air Inlet, !- Inlet Node Name
- F9 SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 NW Zone Splitter, !- Name
- ZoneSplitter F9 NW Supply Air Inlet, !- Inlet Node Name
- F9 NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 SE Zone Splitter, !- Name
- ZoneSplitter F9 SE Supply Air Inlet, !- Inlet Node Name
- F9 SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 NE Zone Splitter, !- Name
- ZoneSplitter F9 NE Supply Air Inlet, !- Inlet Node Name
- F9 NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 N1 Zone Splitter, !- Name
- ZoneSplitter F9 N1 Supply Air Inlet, !- Inlet Node Name
- F9 N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 N2 Zone Splitter, !- Name
- ZoneSplitter F9 N2 Supply Air Inlet, !- Inlet Node Name
- F9 N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 S1 Zone Splitter, !- Name
- ZoneSplitter F9 S1 Supply Air Inlet, !- Inlet Node Name
- F9 S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop F9 S2 Zone Splitter, !- Name
- ZoneSplitter F9 S2 Supply Air Inlet, !- Inlet Node Name
- F9 S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T SW Zone Splitter, !- Name
- ZoneSplitter T SW Supply Air Inlet, !- Inlet Node Name
- T SW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T NW Zone Splitter, !- Name
- ZoneSplitter T NW Supply Air Inlet, !- Inlet Node Name
- T NW Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T SE Zone Splitter, !- Name
- ZoneSplitter T SE Supply Air Inlet, !- Inlet Node Name
- T SE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T NE Zone Splitter, !- Name
- ZoneSplitter T NE Supply Air Inlet, !- Inlet Node Name
- T NE Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T N1 Zone Splitter, !- Name
- ZoneSplitter T N1 Supply Air Inlet, !- Inlet Node Name
- T N1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T N2 Zone Splitter, !- Name
- ZoneSplitter T N2 Supply Air Inlet, !- Inlet Node Name
- T N2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T S1 Zone Splitter, !- Name
- ZoneSplitter T S1 Supply Air Inlet, !- Inlet Node Name
- T S1 Apartment Supply Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- AirLoop T S2 Zone Splitter, !- Name
- ZoneSplitter T S2 Supply Air Inlet, !- Inlet Node Name
- T S2 Apartment Supply Inlet; !- Outlet 1 Node Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH ===========
-
- AirLoopHVAC:SupplyPath,
- AirLoop G SW Supply Path,!- Name
- ZoneSplitter G SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop G NW Supply Path,!- Name
- ZoneSplitter G NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop Office Supply Path, !- Name
- ZoneSplitter Office Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop Office Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop G NE Supply Path,!- Name
- ZoneSplitter G NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop G N1 Supply Path,!- Name
- ZoneSplitter G N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop G N2 Supply Path,!- Name
- ZoneSplitter G N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop G S1 Supply Path,!- Name
- ZoneSplitter G S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop G S2 Supply Path,!- Name
- ZoneSplitter G S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop G S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 SW Supply Path, !- Name
- ZoneSplitter F2 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 NW Supply Path, !- Name
- ZoneSplitter F2 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 SE Supply Path, !- Name
- ZoneSplitter F2 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 NE Supply Path, !- Name
- ZoneSplitter F2 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 N1 Supply Path, !- Name
- ZoneSplitter F2 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 N2 Supply Path, !- Name
- ZoneSplitter F2 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 S1 Supply Path, !- Name
- ZoneSplitter F2 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F2 S2 Supply Path, !- Name
- ZoneSplitter F2 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F2 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 SW Supply Path, !- Name
- ZoneSplitter F3 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 NW Supply Path, !- Name
- ZoneSplitter F3 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 SE Supply Path, !- Name
- ZoneSplitter F3 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 NE Supply Path, !- Name
- ZoneSplitter F3 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 N1 Supply Path, !- Name
- ZoneSplitter F3 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 N2 Supply Path, !- Name
- ZoneSplitter F3 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 S1 Supply Path, !- Name
- ZoneSplitter F3 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F3 S2 Supply Path, !- Name
- ZoneSplitter F3 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F3 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 SW Supply Path, !- Name
- ZoneSplitter F4 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 NW Supply Path, !- Name
- ZoneSplitter F4 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 SE Supply Path, !- Name
- ZoneSplitter F4 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 NE Supply Path, !- Name
- ZoneSplitter F4 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 N1 Supply Path, !- Name
- ZoneSplitter F4 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 N2 Supply Path, !- Name
- ZoneSplitter F4 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 S1 Supply Path, !- Name
- ZoneSplitter F4 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F4 S2 Supply Path, !- Name
- ZoneSplitter F4 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F4 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M SW Supply Path,!- Name
- ZoneSplitter M SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M NW Supply Path,!- Name
- ZoneSplitter M NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M SE Supply Path,!- Name
- ZoneSplitter M SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M NE Supply Path,!- Name
- ZoneSplitter M NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M N1 Supply Path,!- Name
- ZoneSplitter M N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M N2 Supply Path,!- Name
- ZoneSplitter M N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M S1 Supply Path,!- Name
- ZoneSplitter M S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop M S2 Supply Path,!- Name
- ZoneSplitter M S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop M S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 SW Supply Path, !- Name
- ZoneSplitter F6 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 NW Supply Path, !- Name
- ZoneSplitter F6 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 SE Supply Path, !- Name
- ZoneSplitter F6 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 NE Supply Path, !- Name
- ZoneSplitter F6 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 N1 Supply Path, !- Name
- ZoneSplitter F6 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 N2 Supply Path, !- Name
- ZoneSplitter F6 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 S1 Supply Path, !- Name
- ZoneSplitter F6 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F6 S2 Supply Path, !- Name
- ZoneSplitter F6 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F6 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 SW Supply Path, !- Name
- ZoneSplitter F7 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 NW Supply Path, !- Name
- ZoneSplitter F7 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 SE Supply Path, !- Name
- ZoneSplitter F7 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 NE Supply Path, !- Name
- ZoneSplitter F7 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 N1 Supply Path, !- Name
- ZoneSplitter F7 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 N2 Supply Path, !- Name
- ZoneSplitter F7 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 S1 Supply Path, !- Name
- ZoneSplitter F7 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F7 S2 Supply Path, !- Name
- ZoneSplitter F7 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F7 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 SW Supply Path, !- Name
- ZoneSplitter F8 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 NW Supply Path, !- Name
- ZoneSplitter F8 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 SE Supply Path, !- Name
- ZoneSplitter F8 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 NE Supply Path, !- Name
- ZoneSplitter F8 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 N1 Supply Path, !- Name
- ZoneSplitter F8 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 N2 Supply Path, !- Name
- ZoneSplitter F8 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 S1 Supply Path, !- Name
- ZoneSplitter F8 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F8 S2 Supply Path, !- Name
- ZoneSplitter F8 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F8 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 SW Supply Path, !- Name
- ZoneSplitter F9 SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 NW Supply Path, !- Name
- ZoneSplitter F9 NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 SE Supply Path, !- Name
- ZoneSplitter F9 SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 NE Supply Path, !- Name
- ZoneSplitter F9 NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 N1 Supply Path, !- Name
- ZoneSplitter F9 N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 N2 Supply Path, !- Name
- ZoneSplitter F9 N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 S1 Supply Path, !- Name
- ZoneSplitter F9 S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop F9 S2 Supply Path, !- Name
- ZoneSplitter F9 S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop F9 S2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T SW Supply Path,!- Name
- ZoneSplitter T SW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T SW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T NW Supply Path,!- Name
- ZoneSplitter T NW Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T NW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T SE Supply Path,!- Name
- ZoneSplitter T SE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T SE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T NE Supply Path,!- Name
- ZoneSplitter T NE Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T NE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T N1 Supply Path,!- Name
- ZoneSplitter T N1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T N1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T N2 Supply Path,!- Name
- ZoneSplitter T N2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T N2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T S1 Supply Path,!- Name
- ZoneSplitter T S1 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T S1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- AirLoop T S2 Supply Path,!- Name
- ZoneSplitter T S2 Supply Air Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- AirLoop T S2 Zone Splitter; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER ===========
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G SW Zone Mixer, !- Name
- ZoneMixer G SW Return Air Outlet, !- Outlet Node Name
- G SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G NW Zone Mixer, !- Name
- ZoneMixer G NW Return Air Outlet, !- Outlet Node Name
- G NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop Office Zone Mixer, !- Name
- ZoneMixer Office Return Air Outlet, !- Outlet Node Name
- Office Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G NE Zone Mixer, !- Name
- ZoneMixer G NE Return Air Outlet, !- Outlet Node Name
- G NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G N1 Zone Mixer, !- Name
- ZoneMixer G N1 Return Air Outlet, !- Outlet Node Name
- G N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G N2 Zone Mixer, !- Name
- ZoneMixer G N2 Return Air Outlet, !- Outlet Node Name
- G N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G S1 Zone Mixer, !- Name
- ZoneMixer G S1 Return Air Outlet, !- Outlet Node Name
- G S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop G S2 Zone Mixer, !- Name
- ZoneMixer G S2 Return Air Outlet, !- Outlet Node Name
- G S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 SW Zone Mixer,!- Name
- ZoneMixer F2 SW Return Air Outlet, !- Outlet Node Name
- F2 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 NW Zone Mixer,!- Name
- ZoneMixer F2 NW Return Air Outlet, !- Outlet Node Name
- F2 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 SE Zone Mixer,!- Name
- ZoneMixer F2 SE Return Air Outlet, !- Outlet Node Name
- F2 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 NE Zone Mixer,!- Name
- ZoneMixer F2 NE Return Air Outlet, !- Outlet Node Name
- F2 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 N1 Zone Mixer,!- Name
- ZoneMixer F2 N1 Return Air Outlet, !- Outlet Node Name
- F2 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 N2 Zone Mixer,!- Name
- ZoneMixer F2 N2 Return Air Outlet, !- Outlet Node Name
- F2 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 S1 Zone Mixer,!- Name
- ZoneMixer F2 S1 Return Air Outlet, !- Outlet Node Name
- F2 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F2 S2 Zone Mixer,!- Name
- ZoneMixer F2 S2 Return Air Outlet, !- Outlet Node Name
- F2 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 SW Zone Mixer,!- Name
- ZoneMixer F3 SW Return Air Outlet, !- Outlet Node Name
- F3 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 NW Zone Mixer,!- Name
- ZoneMixer F3 NW Return Air Outlet, !- Outlet Node Name
- F3 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 SE Zone Mixer,!- Name
- ZoneMixer F3 SE Return Air Outlet, !- Outlet Node Name
- F3 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 NE Zone Mixer,!- Name
- ZoneMixer F3 NE Return Air Outlet, !- Outlet Node Name
- F3 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 N1 Zone Mixer,!- Name
- ZoneMixer F3 N1 Return Air Outlet, !- Outlet Node Name
- F3 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 N2 Zone Mixer,!- Name
- ZoneMixer F3 N2 Return Air Outlet, !- Outlet Node Name
- F3 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 S1 Zone Mixer,!- Name
- ZoneMixer F3 S1 Return Air Outlet, !- Outlet Node Name
- F3 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F3 S2 Zone Mixer,!- Name
- ZoneMixer F3 S2 Return Air Outlet, !- Outlet Node Name
- F3 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 SW Zone Mixer,!- Name
- ZoneMixer F4 SW Return Air Outlet, !- Outlet Node Name
- F4 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 NW Zone Mixer,!- Name
- ZoneMixer F4 NW Return Air Outlet, !- Outlet Node Name
- F4 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 SE Zone Mixer,!- Name
- ZoneMixer F4 SE Return Air Outlet, !- Outlet Node Name
- F4 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 NE Zone Mixer,!- Name
- ZoneMixer F4 NE Return Air Outlet, !- Outlet Node Name
- F4 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 N1 Zone Mixer,!- Name
- ZoneMixer F4 N1 Return Air Outlet, !- Outlet Node Name
- F4 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 N2 Zone Mixer,!- Name
- ZoneMixer F4 N2 Return Air Outlet, !- Outlet Node Name
- F4 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 S1 Zone Mixer,!- Name
- ZoneMixer F4 S1 Return Air Outlet, !- Outlet Node Name
- F4 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F4 S2 Zone Mixer,!- Name
- ZoneMixer F4 S2 Return Air Outlet, !- Outlet Node Name
- F4 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M SW Zone Mixer, !- Name
- ZoneMixer M SW Return Air Outlet, !- Outlet Node Name
- M SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M NW Zone Mixer, !- Name
- ZoneMixer M NW Return Air Outlet, !- Outlet Node Name
- M NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M SE Zone Mixer, !- Name
- ZoneMixer M SE Return Air Outlet, !- Outlet Node Name
- M SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M NE Zone Mixer, !- Name
- ZoneMixer M NE Return Air Outlet, !- Outlet Node Name
- M NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M N1 Zone Mixer, !- Name
- ZoneMixer M N1 Return Air Outlet, !- Outlet Node Name
- M N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M N2 Zone Mixer, !- Name
- ZoneMixer M N2 Return Air Outlet, !- Outlet Node Name
- M N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M S1 Zone Mixer, !- Name
- ZoneMixer M S1 Return Air Outlet, !- Outlet Node Name
- M S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop M S2 Zone Mixer, !- Name
- ZoneMixer M S2 Return Air Outlet, !- Outlet Node Name
- M S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 SW Zone Mixer,!- Name
- ZoneMixer F6 SW Return Air Outlet, !- Outlet Node Name
- F6 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 NW Zone Mixer,!- Name
- ZoneMixer F6 NW Return Air Outlet, !- Outlet Node Name
- F6 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 SE Zone Mixer,!- Name
- ZoneMixer F6 SE Return Air Outlet, !- Outlet Node Name
- F6 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 NE Zone Mixer,!- Name
- ZoneMixer F6 NE Return Air Outlet, !- Outlet Node Name
- F6 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 N1 Zone Mixer,!- Name
- ZoneMixer F6 N1 Return Air Outlet, !- Outlet Node Name
- F6 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 N2 Zone Mixer,!- Name
- ZoneMixer F6 N2 Return Air Outlet, !- Outlet Node Name
- F6 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 S1 Zone Mixer,!- Name
- ZoneMixer F6 S1 Return Air Outlet, !- Outlet Node Name
- F6 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F6 S2 Zone Mixer,!- Name
- ZoneMixer F6 S2 Return Air Outlet, !- Outlet Node Name
- F6 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 SW Zone Mixer,!- Name
- ZoneMixer F7 SW Return Air Outlet, !- Outlet Node Name
- F7 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 NW Zone Mixer,!- Name
- ZoneMixer F7 NW Return Air Outlet, !- Outlet Node Name
- F7 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 SE Zone Mixer,!- Name
- ZoneMixer F7 SE Return Air Outlet, !- Outlet Node Name
- F7 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 NE Zone Mixer,!- Name
- ZoneMixer F7 NE Return Air Outlet, !- Outlet Node Name
- F7 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 N1 Zone Mixer,!- Name
- ZoneMixer F7 N1 Return Air Outlet, !- Outlet Node Name
- F7 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 N2 Zone Mixer,!- Name
- ZoneMixer F7 N2 Return Air Outlet, !- Outlet Node Name
- F7 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 S1 Zone Mixer,!- Name
- ZoneMixer F7 S1 Return Air Outlet, !- Outlet Node Name
- F7 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F7 S2 Zone Mixer,!- Name
- ZoneMixer F7 S2 Return Air Outlet, !- Outlet Node Name
- F7 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 SW Zone Mixer,!- Name
- ZoneMixer F8 SW Return Air Outlet, !- Outlet Node Name
- F8 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 NW Zone Mixer,!- Name
- ZoneMixer F8 NW Return Air Outlet, !- Outlet Node Name
- F8 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 SE Zone Mixer,!- Name
- ZoneMixer F8 SE Return Air Outlet, !- Outlet Node Name
- F8 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 NE Zone Mixer,!- Name
- ZoneMixer F8 NE Return Air Outlet, !- Outlet Node Name
- F8 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 N1 Zone Mixer,!- Name
- ZoneMixer F8 N1 Return Air Outlet, !- Outlet Node Name
- F8 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 N2 Zone Mixer,!- Name
- ZoneMixer F8 N2 Return Air Outlet, !- Outlet Node Name
- F8 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 S1 Zone Mixer,!- Name
- ZoneMixer F8 S1 Return Air Outlet, !- Outlet Node Name
- F8 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F8 S2 Zone Mixer,!- Name
- ZoneMixer F8 S2 Return Air Outlet, !- Outlet Node Name
- F8 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 SW Zone Mixer,!- Name
- ZoneMixer F9 SW Return Air Outlet, !- Outlet Node Name
- F9 SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 NW Zone Mixer,!- Name
- ZoneMixer F9 NW Return Air Outlet, !- Outlet Node Name
- F9 NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 SE Zone Mixer,!- Name
- ZoneMixer F9 SE Return Air Outlet, !- Outlet Node Name
- F9 SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 NE Zone Mixer,!- Name
- ZoneMixer F9 NE Return Air Outlet, !- Outlet Node Name
- F9 NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 N1 Zone Mixer,!- Name
- ZoneMixer F9 N1 Return Air Outlet, !- Outlet Node Name
- F9 N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 N2 Zone Mixer,!- Name
- ZoneMixer F9 N2 Return Air Outlet, !- Outlet Node Name
- F9 N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 S1 Zone Mixer,!- Name
- ZoneMixer F9 S1 Return Air Outlet, !- Outlet Node Name
- F9 S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop F9 S2 Zone Mixer,!- Name
- ZoneMixer F9 S2 Return Air Outlet, !- Outlet Node Name
- F9 S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T SW Zone Mixer, !- Name
- ZoneMixer T SW Return Air Outlet, !- Outlet Node Name
- T SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T NW Zone Mixer, !- Name
- ZoneMixer T NW Return Air Outlet, !- Outlet Node Name
- T NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T SE Zone Mixer, !- Name
- ZoneMixer T SE Return Air Outlet, !- Outlet Node Name
- T SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T NE Zone Mixer, !- Name
- ZoneMixer T NE Return Air Outlet, !- Outlet Node Name
- T NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T N1 Zone Mixer, !- Name
- ZoneMixer T N1 Return Air Outlet, !- Outlet Node Name
- T N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T N2 Zone Mixer, !- Name
- ZoneMixer T N2 Return Air Outlet, !- Outlet Node Name
- T N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T S1 Zone Mixer, !- Name
- ZoneMixer T S1 Return Air Outlet, !- Outlet Node Name
- T S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- AirLoop T S2 Zone Mixer, !- Name
- ZoneMixer T S2 Return Air Outlet, !- Outlet Node Name
- T S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH ===========
-
- AirLoopHVAC:ReturnPath,
- AirLoop G SW Return Path,!- Name
- ZoneMixer G SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G SW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop G NW Return Path,!- Name
- ZoneMixer G NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G NW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop Office Return Path, !- Name
- ZoneMixer Office Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop Office Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop G NE Return Path,!- Name
- ZoneMixer G NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G NE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop G N1 Return Path,!- Name
- ZoneMixer G N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G N1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop G N2 Return Path,!- Name
- ZoneMixer G N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G N2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop G S1 Return Path,!- Name
- ZoneMixer G S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G S1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop G S2 Return Path,!- Name
- ZoneMixer G S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop G S2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 SW Return Path, !- Name
- ZoneMixer F2 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 NW Return Path, !- Name
- ZoneMixer F2 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 SE Return Path, !- Name
- ZoneMixer F2 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 NE Return Path, !- Name
- ZoneMixer F2 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 N1 Return Path, !- Name
- ZoneMixer F2 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 N2 Return Path, !- Name
- ZoneMixer F2 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 S1 Return Path, !- Name
- ZoneMixer F2 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F2 S2 Return Path, !- Name
- ZoneMixer F2 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F2 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 SW Return Path, !- Name
- ZoneMixer F3 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 NW Return Path, !- Name
- ZoneMixer F3 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 SE Return Path, !- Name
- ZoneMixer F3 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 NE Return Path, !- Name
- ZoneMixer F3 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 N1 Return Path, !- Name
- ZoneMixer F3 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 N2 Return Path, !- Name
- ZoneMixer F3 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 S1 Return Path, !- Name
- ZoneMixer F3 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F3 S2 Return Path, !- Name
- ZoneMixer F3 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F3 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 SW Return Path, !- Name
- ZoneMixer F4 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 NW Return Path, !- Name
- ZoneMixer F4 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 SE Return Path, !- Name
- ZoneMixer F4 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 NE Return Path, !- Name
- ZoneMixer F4 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 N1 Return Path, !- Name
- ZoneMixer F4 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 N2 Return Path, !- Name
- ZoneMixer F4 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 S1 Return Path, !- Name
- ZoneMixer F4 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F4 S2 Return Path, !- Name
- ZoneMixer F4 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F4 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M SW Return Path,!- Name
- ZoneMixer M SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M SW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M NW Return Path,!- Name
- ZoneMixer M NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M NW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M SE Return Path,!- Name
- ZoneMixer M SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M SE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M NE Return Path,!- Name
- ZoneMixer M NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M NE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M N1 Return Path,!- Name
- ZoneMixer M N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M N1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M N2 Return Path,!- Name
- ZoneMixer M N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M N2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M S1 Return Path,!- Name
- ZoneMixer M S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M S1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop M S2 Return Path,!- Name
- ZoneMixer M S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop M S2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 SW Return Path, !- Name
- ZoneMixer F6 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 NW Return Path, !- Name
- ZoneMixer F6 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 SE Return Path, !- Name
- ZoneMixer F6 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 NE Return Path, !- Name
- ZoneMixer F6 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 N1 Return Path, !- Name
- ZoneMixer F6 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 N2 Return Path, !- Name
- ZoneMixer F6 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 S1 Return Path, !- Name
- ZoneMixer F6 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F6 S2 Return Path, !- Name
- ZoneMixer F6 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F6 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 SW Return Path, !- Name
- ZoneMixer F7 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 NW Return Path, !- Name
- ZoneMixer F7 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 SE Return Path, !- Name
- ZoneMixer F7 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 NE Return Path, !- Name
- ZoneMixer F7 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 N1 Return Path, !- Name
- ZoneMixer F7 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 N2 Return Path, !- Name
- ZoneMixer F7 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 S1 Return Path, !- Name
- ZoneMixer F7 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F7 S2 Return Path, !- Name
- ZoneMixer F7 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F7 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 SW Return Path, !- Name
- ZoneMixer F8 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 NW Return Path, !- Name
- ZoneMixer F8 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 SE Return Path, !- Name
- ZoneMixer F8 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 NE Return Path, !- Name
- ZoneMixer F8 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 N1 Return Path, !- Name
- ZoneMixer F8 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 N2 Return Path, !- Name
- ZoneMixer F8 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 S1 Return Path, !- Name
- ZoneMixer F8 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F8 S2 Return Path, !- Name
- ZoneMixer F8 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F8 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 SW Return Path, !- Name
- ZoneMixer F9 SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 SW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 NW Return Path, !- Name
- ZoneMixer F9 NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 NW Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 SE Return Path, !- Name
- ZoneMixer F9 SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 SE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 NE Return Path, !- Name
- ZoneMixer F9 NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 NE Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 N1 Return Path, !- Name
- ZoneMixer F9 N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 N1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 N2 Return Path, !- Name
- ZoneMixer F9 N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 N2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 S1 Return Path, !- Name
- ZoneMixer F9 S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 S1 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop F9 S2 Return Path, !- Name
- ZoneMixer F9 S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop F9 S2 Zone Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T SW Return Path,!- Name
- ZoneMixer T SW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T SW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T NW Return Path,!- Name
- ZoneMixer T NW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T NW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T SE Return Path,!- Name
- ZoneMixer T SE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T SE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T NE Return Path,!- Name
- ZoneMixer T NE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T NE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T N1 Return Path,!- Name
- ZoneMixer T N1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T N1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T N2 Return Path,!- Name
- ZoneMixer T N2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T N2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T S1 Return Path,!- Name
- ZoneMixer T S1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T S1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- AirLoop T S2 Return Path,!- Name
- ZoneMixer T S2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- AirLoop T S2 Zone Mixer; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: BRANCH ===========
-
-
- Branch,
- SHWSys1 Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:ConstantSpeed, !- Component 1 Object Type
- SHWSys1 Pump, !- Component 1 Name
- SHWSys1 Supply Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector; !- Component 1 Outlet Node Name
-
-
- Branch,
- SHWSys1 Supply Equipment Branch, !- Name
- , !- Pressure Drop Curve Name
- WaterHeater:Mixed, !- Component 1 Object Type
- SHWSys1 Water Heater, !- Component 1 Name
- SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Component 1 Inlet Node Name
- SHWSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Supply Equipment Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Supply Equipment Bypass Pipe, !- Component 1 Name
- SHWSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name
-
-
- Branch,
- SHWSys1 Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Supply Outlet Pipe, !- Component 1 Name
- SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name
- SHWSys1 Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Demand Inlet Pipe, !- Component 1 Name
- SHWSys1 Demand Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Component 1 Outlet Node Name
-
-
- Branch,
- SHWSys1 Demand Load Branch 1, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G SW Apartment sub cat, !- Component 1 Name
- G SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 2, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G NW Apartment sub cat, !- Component 1 Name
- G NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 3, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G NE Apartment sub cat, !- Component 1 Name
- G NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 4, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G N1 Apartment sub cat, !- Component 1 Name
- G N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 5, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G N2 Apartment sub cat, !- Component 1 Name
- G N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 6, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G S1 Apartment sub cat, !- Component 1 Name
- G S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 7, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- G S2 Apartment sub cat, !- Component 1 Name
- G S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- G S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 8, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 SW Apartment sub cat, !- Component 1 Name
- F2 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 9, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 NW Apartment sub cat, !- Component 1 Name
- F2 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 10, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 SE Apartment sub cat, !- Component 1 Name
- F2 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 11, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 NE Apartment sub cat, !- Component 1 Name
- F2 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 12, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 N1 Apartment sub cat, !- Component 1 Name
- F2 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 13, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 N2 Apartment sub cat, !- Component 1 Name
- F2 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 14, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 S1 Apartment sub cat, !- Component 1 Name
- F2 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 15, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F2 S2 Apartment sub cat, !- Component 1 Name
- F2 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F2 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 16, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 SW Apartment sub cat, !- Component 1 Name
- F3 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 17, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 NW Apartment sub cat, !- Component 1 Name
- F3 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 18, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 SE Apartment sub cat, !- Component 1 Name
- F3 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 19, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 NE Apartment sub cat, !- Component 1 Name
- F3 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 20, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 N1 Apartment sub cat, !- Component 1 Name
- F3 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 21, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 N2 Apartment sub cat, !- Component 1 Name
- F3 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 22, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 S1 Apartment sub cat, !- Component 1 Name
- F3 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 23, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F3 S2 Apartment sub cat, !- Component 1 Name
- F3 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F3 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 24, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 SW Apartment sub cat, !- Component 1 Name
- F4 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 25, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 NW Apartment sub cat, !- Component 1 Name
- F4 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 26, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 SE Apartment sub cat, !- Component 1 Name
- F4 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 27, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 NE Apartment sub cat, !- Component 1 Name
- F4 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 28, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 N1 Apartment sub cat, !- Component 1 Name
- F4 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 29, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 N2 Apartment sub cat, !- Component 1 Name
- F4 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 30, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 S1 Apartment sub cat, !- Component 1 Name
- F4 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 31, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F4 S2 Apartment sub cat, !- Component 1 Name
- F4 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F4 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 32, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M SW Apartment sub cat, !- Component 1 Name
- M SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 33, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M NW Apartment sub cat, !- Component 1 Name
- M NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 34, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M SE Apartment sub cat, !- Component 1 Name
- M SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 35, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M NE Apartment sub cat, !- Component 1 Name
- M NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 36, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M N1 Apartment sub cat, !- Component 1 Name
- M N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 37, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M N2 Apartment sub cat, !- Component 1 Name
- M N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 38, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M S1 Apartment sub cat, !- Component 1 Name
- M S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 39, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- M S2 Apartment sub cat, !- Component 1 Name
- M S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- M S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 40, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 SW Apartment sub cat, !- Component 1 Name
- F6 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 41, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 NW Apartment sub cat, !- Component 1 Name
- F6 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 42, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 SE Apartment sub cat, !- Component 1 Name
- F6 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 43, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 NE Apartment sub cat, !- Component 1 Name
- F6 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 44, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 N1 Apartment sub cat, !- Component 1 Name
- F6 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 45, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 N2 Apartment sub cat, !- Component 1 Name
- F6 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 46, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 S1 Apartment sub cat, !- Component 1 Name
- F6 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 47, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F6 S2 Apartment sub cat, !- Component 1 Name
- F6 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F6 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 48, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 SW Apartment sub cat, !- Component 1 Name
- F7 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 49, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 NW Apartment sub cat, !- Component 1 Name
- F7 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 50, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 SE Apartment sub cat, !- Component 1 Name
- F7 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 51, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 NE Apartment sub cat, !- Component 1 Name
- F7 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 52, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 N1 Apartment sub cat, !- Component 1 Name
- F7 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 53, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 N2 Apartment sub cat, !- Component 1 Name
- F7 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 54, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 S1 Apartment sub cat, !- Component 1 Name
- F7 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 55, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F7 S2 Apartment sub cat, !- Component 1 Name
- F7 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F7 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 56, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 SW Apartment sub cat, !- Component 1 Name
- F8 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 57, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 NW Apartment sub cat, !- Component 1 Name
- F8 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 58, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 SE Apartment sub cat, !- Component 1 Name
- F8 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 59, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 NE Apartment sub cat, !- Component 1 Name
- F8 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 60, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 N1 Apartment sub cat, !- Component 1 Name
- F8 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 61, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 N2 Apartment sub cat, !- Component 1 Name
- F8 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 62, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 S1 Apartment sub cat, !- Component 1 Name
- F8 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 63, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F8 S2 Apartment sub cat, !- Component 1 Name
- F8 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F8 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 64, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 SW Apartment sub cat, !- Component 1 Name
- F9 SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 65, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 NW Apartment sub cat, !- Component 1 Name
- F9 NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 66, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 SE Apartment sub cat, !- Component 1 Name
- F9 SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 67, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 NE Apartment sub cat, !- Component 1 Name
- F9 NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 68, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 N1 Apartment sub cat, !- Component 1 Name
- F9 N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 69, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 N2 Apartment sub cat, !- Component 1 Name
- F9 N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 70, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 S1 Apartment sub cat, !- Component 1 Name
- F9 S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 71, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- F9 S2 Apartment sub cat, !- Component 1 Name
- F9 S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- F9 S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 72, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T SW Apartment sub cat, !- Component 1 Name
- T SW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T SW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 73, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T NW Apartment sub cat, !- Component 1 Name
- T NW Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T NW Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 74, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T SE Apartment sub cat, !- Component 1 Name
- T SE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T SE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 75, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T NE Apartment sub cat, !- Component 1 Name
- T NE Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T NE Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 76, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T N1 Apartment sub cat, !- Component 1 Name
- T N1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T N1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 77, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T N2 Apartment sub cat, !- Component 1 Name
- T N2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T N2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 78, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T S1 Apartment sub cat, !- Component 1 Name
- T S1 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T S1 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 79, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- T S2 Apartment sub cat, !- Component 1 Name
- T S2 Apartment sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- T S2 Apartment sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Demand Bypass Pipe, !- Component 1 Name
- SHWSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Demand Outlet Pipe, !- Component 1 Name
- SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name
- SHWSys1 Demand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Plant Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:ConstantSpeed, !- Component 1 Object Type
- Plant Circ Pump, !- Component 1 Name
- Plant Supply Inlet Node, !- Component 1 Inlet Node Name
- Plant Pump Outlet Node; !- Component 1 Outlet Node Name
-
-
- Branch,
- Plant Supply Tower Branch, !- Name
- , !- Pressure Drop Curve Name
- EvaporativeFluidCooler:TwoSpeed, !- Component 1 Object Type
- Central Tower, !- Component 1 Name
- Central Tower Inlet Node,!- Component 1 Inlet Node Name
- Central Tower Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Central Boiler Branch, !- Name
- , !- Pressure Drop Curve Name
- Boiler:HotWater, !- Component 1 Object Type
- Central Boiler, !- Component 1 Name
- Central Boiler Inlet Node, !- Component 1 Inlet Node Name
- Central Boiler Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Plant Supply Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Plant Supply Side Bypass,!- Component 1 Name
- Plant Supply Bypass Inlet Node, !- Component 1 Inlet Node Name
- Plant Supply Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Plant Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Plant Supply Outlet, !- Component 1 Name
- Plant Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name
- Plant Supply Outlet Node;!- Component 1 Outlet Node Name
-
- Branch,
- Plant Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Plant Demand Inlet Pipe, !- Component 1 Name
- Plant Demand Inlet Node, !- Component 1 Inlet Node Name
- Plant Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Plant Demand Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Plant Demand Side Bypass,!- Component 1 Name
- Cond Demand Bypass Inlet Node, !- Component 1 Inlet Node Name
- Cond Demand Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Plant Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Plant Demand Outlet Pipe,!- Component 1 Name
- Plant Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name
- Plant Demand Outlet Node;!- Component 1 Outlet Node Name
-
- Branch,
- AirLoop G SW Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G SW OA System, !- Component 1 Name
- AirLoop G SW Return Air Inlet, !- Component 1 Inlet Node Name
- G SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G SW DXAC Heat Pump, !- Component 2 Name
- G SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop G NW Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G NW OA System, !- Component 1 Name
- AirLoop G NW Return Air Inlet, !- Component 1 Inlet Node Name
- G NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G NW DXAC Heat Pump, !- Component 2 Name
- G NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop Office Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop Office OA System,!- Component 1 Name
- AirLoop Office Return Air Inlet, !- Component 1 Inlet Node Name
- Office Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop Office DXAC Heat Pump, !- Component 2 Name
- Office Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop Office Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop G NE Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G NE OA System, !- Component 1 Name
- AirLoop G NE Return Air Inlet, !- Component 1 Inlet Node Name
- G NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G NE DXAC Heat Pump, !- Component 2 Name
- G NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop G N1 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G N1 OA System, !- Component 1 Name
- AirLoop G N1 Return Air Inlet, !- Component 1 Inlet Node Name
- G N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G N1 DXAC Heat Pump, !- Component 2 Name
- G N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop G N2 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G N2 OA System, !- Component 1 Name
- AirLoop G N2 Return Air Inlet, !- Component 1 Inlet Node Name
- G N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G N2 DXAC Heat Pump, !- Component 2 Name
- G N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop G S1 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G S1 OA System, !- Component 1 Name
- AirLoop G S1 Return Air Inlet, !- Component 1 Inlet Node Name
- G S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G S1 DXAC Heat Pump, !- Component 2 Name
- G S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop G S2 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop G S2 OA System, !- Component 1 Name
- AirLoop G S2 Return Air Inlet, !- Component 1 Inlet Node Name
- G S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop G S2 DXAC Heat Pump, !- Component 2 Name
- G S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop G S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 SW OA System, !- Component 1 Name
- AirLoop F2 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F2 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 SW DXAC Heat Pump, !- Component 2 Name
- F2 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 NW OA System, !- Component 1 Name
- AirLoop F2 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F2 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 NW DXAC Heat Pump, !- Component 2 Name
- F2 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 SE OA System, !- Component 1 Name
- AirLoop F2 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F2 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 SE DXAC Heat Pump, !- Component 2 Name
- F2 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 NE OA System, !- Component 1 Name
- AirLoop F2 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F2 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 NE DXAC Heat Pump, !- Component 2 Name
- F2 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 N1 OA System, !- Component 1 Name
- AirLoop F2 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F2 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 N1 DXAC Heat Pump, !- Component 2 Name
- F2 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 N2 OA System, !- Component 1 Name
- AirLoop F2 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F2 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 N2 DXAC Heat Pump, !- Component 2 Name
- F2 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 S1 OA System, !- Component 1 Name
- AirLoop F2 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F2 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 S1 DXAC Heat Pump, !- Component 2 Name
- F2 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F2 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F2 S2 OA System, !- Component 1 Name
- AirLoop F2 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F2 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F2 S2 DXAC Heat Pump, !- Component 2 Name
- F2 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F2 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 SW OA System, !- Component 1 Name
- AirLoop F3 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F3 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 SW DXAC Heat Pump, !- Component 2 Name
- F3 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 NW OA System, !- Component 1 Name
- AirLoop F3 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F3 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 NW DXAC Heat Pump, !- Component 2 Name
- F3 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 SE OA System, !- Component 1 Name
- AirLoop F3 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F3 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 SE DXAC Heat Pump, !- Component 2 Name
- F3 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 NE OA System, !- Component 1 Name
- AirLoop F3 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F3 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 NE DXAC Heat Pump, !- Component 2 Name
- F3 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 N1 OA System, !- Component 1 Name
- AirLoop F3 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F3 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 N1 DXAC Heat Pump, !- Component 2 Name
- F3 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 N2 OA System, !- Component 1 Name
- AirLoop F3 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F3 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 N2 DXAC Heat Pump, !- Component 2 Name
- F3 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 S1 OA System, !- Component 1 Name
- AirLoop F3 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F3 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 S1 DXAC Heat Pump, !- Component 2 Name
- F3 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F3 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F3 S2 OA System, !- Component 1 Name
- AirLoop F3 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F3 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F3 S2 DXAC Heat Pump, !- Component 2 Name
- F3 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F3 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 SW OA System, !- Component 1 Name
- AirLoop F4 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F4 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 SW DXAC Heat Pump, !- Component 2 Name
- F4 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 NW OA System, !- Component 1 Name
- AirLoop F4 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F4 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 NW DXAC Heat Pump, !- Component 2 Name
- F4 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 SE OA System, !- Component 1 Name
- AirLoop F4 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F4 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 SE DXAC Heat Pump, !- Component 2 Name
- F4 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 NE OA System, !- Component 1 Name
- AirLoop F4 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F4 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 NE DXAC Heat Pump, !- Component 2 Name
- F4 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 N1 OA System, !- Component 1 Name
- AirLoop F4 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F4 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 N1 DXAC Heat Pump, !- Component 2 Name
- F4 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 N2 OA System, !- Component 1 Name
- AirLoop F4 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F4 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 N2 DXAC Heat Pump, !- Component 2 Name
- F4 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 S1 OA System, !- Component 1 Name
- AirLoop F4 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F4 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 S1 DXAC Heat Pump, !- Component 2 Name
- F4 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F4 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F4 S2 OA System, !- Component 1 Name
- AirLoop F4 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F4 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F4 S2 DXAC Heat Pump, !- Component 2 Name
- F4 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F4 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M SW Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M SW OA System, !- Component 1 Name
- AirLoop M SW Return Air Inlet, !- Component 1 Inlet Node Name
- M SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M SW DXAC Heat Pump, !- Component 2 Name
- M SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M NW Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M NW OA System, !- Component 1 Name
- AirLoop M NW Return Air Inlet, !- Component 1 Inlet Node Name
- M NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M NW DXAC Heat Pump, !- Component 2 Name
- M NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M SE Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M SE OA System, !- Component 1 Name
- AirLoop M SE Return Air Inlet, !- Component 1 Inlet Node Name
- M SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M SE DXAC Heat Pump, !- Component 2 Name
- M SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M NE Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M NE OA System, !- Component 1 Name
- AirLoop M NE Return Air Inlet, !- Component 1 Inlet Node Name
- M NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M NE DXAC Heat Pump, !- Component 2 Name
- M NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M N1 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M N1 OA System, !- Component 1 Name
- AirLoop M N1 Return Air Inlet, !- Component 1 Inlet Node Name
- M N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M N1 DXAC Heat Pump, !- Component 2 Name
- M N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M N2 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M N2 OA System, !- Component 1 Name
- AirLoop M N2 Return Air Inlet, !- Component 1 Inlet Node Name
- M N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M N2 DXAC Heat Pump, !- Component 2 Name
- M N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M S1 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M S1 OA System, !- Component 1 Name
- AirLoop M S1 Return Air Inlet, !- Component 1 Inlet Node Name
- M S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M S1 DXAC Heat Pump, !- Component 2 Name
- M S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop M S2 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop M S2 OA System, !- Component 1 Name
- AirLoop M S2 Return Air Inlet, !- Component 1 Inlet Node Name
- M S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop M S2 DXAC Heat Pump, !- Component 2 Name
- M S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop M S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 SW OA System, !- Component 1 Name
- AirLoop F6 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F6 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 SW DXAC Heat Pump, !- Component 2 Name
- F6 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 NW OA System, !- Component 1 Name
- AirLoop F6 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F6 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 NW DXAC Heat Pump, !- Component 2 Name
- F6 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 SE OA System, !- Component 1 Name
- AirLoop F6 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F6 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 SE DXAC Heat Pump, !- Component 2 Name
- F6 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 NE OA System, !- Component 1 Name
- AirLoop F6 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F6 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 NE DXAC Heat Pump, !- Component 2 Name
- F6 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 N1 OA System, !- Component 1 Name
- AirLoop F6 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F6 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 N1 DXAC Heat Pump, !- Component 2 Name
- F6 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 N2 OA System, !- Component 1 Name
- AirLoop F6 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F6 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 N2 DXAC Heat Pump, !- Component 2 Name
- F6 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 S1 OA System, !- Component 1 Name
- AirLoop F6 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F6 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 S1 DXAC Heat Pump, !- Component 2 Name
- F6 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F6 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F6 S2 OA System, !- Component 1 Name
- AirLoop F6 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F6 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F6 S2 DXAC Heat Pump, !- Component 2 Name
- F6 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F6 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 SW OA System, !- Component 1 Name
- AirLoop F7 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F7 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 SW DXAC Heat Pump, !- Component 2 Name
- F7 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 NW OA System, !- Component 1 Name
- AirLoop F7 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F7 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 NW DXAC Heat Pump, !- Component 2 Name
- F7 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 SE OA System, !- Component 1 Name
- AirLoop F7 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F7 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 SE DXAC Heat Pump, !- Component 2 Name
- F7 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 NE OA System, !- Component 1 Name
- AirLoop F7 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F7 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 NE DXAC Heat Pump, !- Component 2 Name
- F7 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 N1 OA System, !- Component 1 Name
- AirLoop F7 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F7 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 N1 DXAC Heat Pump, !- Component 2 Name
- F7 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 N2 OA System, !- Component 1 Name
- AirLoop F7 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F7 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 N2 DXAC Heat Pump, !- Component 2 Name
- F7 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 S1 OA System, !- Component 1 Name
- AirLoop F7 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F7 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 S1 DXAC Heat Pump, !- Component 2 Name
- F7 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F7 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F7 S2 OA System, !- Component 1 Name
- AirLoop F7 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F7 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F7 S2 DXAC Heat Pump, !- Component 2 Name
- F7 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F7 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 SW OA System, !- Component 1 Name
- AirLoop F8 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F8 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 SW DXAC Heat Pump, !- Component 2 Name
- F8 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 NW OA System, !- Component 1 Name
- AirLoop F8 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F8 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 NW DXAC Heat Pump, !- Component 2 Name
- F8 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 SE OA System, !- Component 1 Name
- AirLoop F8 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F8 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 SE DXAC Heat Pump, !- Component 2 Name
- F8 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 NE OA System, !- Component 1 Name
- AirLoop F8 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F8 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 NE DXAC Heat Pump, !- Component 2 Name
- F8 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 N1 OA System, !- Component 1 Name
- AirLoop F8 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F8 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 N1 DXAC Heat Pump, !- Component 2 Name
- F8 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 N2 OA System, !- Component 1 Name
- AirLoop F8 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F8 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 N2 DXAC Heat Pump, !- Component 2 Name
- F8 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 S1 OA System, !- Component 1 Name
- AirLoop F8 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F8 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 S1 DXAC Heat Pump, !- Component 2 Name
- F8 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F8 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F8 S2 OA System, !- Component 1 Name
- AirLoop F8 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F8 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F8 S2 DXAC Heat Pump, !- Component 2 Name
- F8 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F8 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 SW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 SW OA System, !- Component 1 Name
- AirLoop F9 SW Return Air Inlet, !- Component 1 Inlet Node Name
- F9 SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 SW DXAC Heat Pump, !- Component 2 Name
- F9 SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 NW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 NW OA System, !- Component 1 Name
- AirLoop F9 NW Return Air Inlet, !- Component 1 Inlet Node Name
- F9 NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 NW DXAC Heat Pump, !- Component 2 Name
- F9 NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 SE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 SE OA System, !- Component 1 Name
- AirLoop F9 SE Return Air Inlet, !- Component 1 Inlet Node Name
- F9 SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 SE DXAC Heat Pump, !- Component 2 Name
- F9 SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 NE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 NE OA System, !- Component 1 Name
- AirLoop F9 NE Return Air Inlet, !- Component 1 Inlet Node Name
- F9 NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 NE DXAC Heat Pump, !- Component 2 Name
- F9 NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 N1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 N1 OA System, !- Component 1 Name
- AirLoop F9 N1 Return Air Inlet, !- Component 1 Inlet Node Name
- F9 N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 N1 DXAC Heat Pump, !- Component 2 Name
- F9 N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 N2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 N2 OA System, !- Component 1 Name
- AirLoop F9 N2 Return Air Inlet, !- Component 1 Inlet Node Name
- F9 N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 N2 DXAC Heat Pump, !- Component 2 Name
- F9 N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 S1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 S1 OA System, !- Component 1 Name
- AirLoop F9 S1 Return Air Inlet, !- Component 1 Inlet Node Name
- F9 S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 S1 DXAC Heat Pump, !- Component 2 Name
- F9 S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop F9 S2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop F9 S2 OA System, !- Component 1 Name
- AirLoop F9 S2 Return Air Inlet, !- Component 1 Inlet Node Name
- F9 S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop F9 S2 DXAC Heat Pump, !- Component 2 Name
- F9 S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop F9 S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T SW Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T SW OA System, !- Component 1 Name
- AirLoop T SW Return Air Inlet, !- Component 1 Inlet Node Name
- T SW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T SW DXAC Heat Pump, !- Component 2 Name
- T SW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T SW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T NW Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T NW OA System, !- Component 1 Name
- AirLoop T NW Return Air Inlet, !- Component 1 Inlet Node Name
- T NW Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T NW DXAC Heat Pump, !- Component 2 Name
- T NW Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T NW Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T SE Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T SE OA System, !- Component 1 Name
- AirLoop T SE Return Air Inlet, !- Component 1 Inlet Node Name
- T SE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T SE DXAC Heat Pump, !- Component 2 Name
- T SE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T SE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T NE Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T NE OA System, !- Component 1 Name
- AirLoop T NE Return Air Inlet, !- Component 1 Inlet Node Name
- T NE Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T NE DXAC Heat Pump, !- Component 2 Name
- T NE Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T NE Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T N1 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T N1 OA System, !- Component 1 Name
- AirLoop T N1 Return Air Inlet, !- Component 1 Inlet Node Name
- T N1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T N1 DXAC Heat Pump, !- Component 2 Name
- T N1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T N1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T N2 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T N2 OA System, !- Component 1 Name
- AirLoop T N2 Return Air Inlet, !- Component 1 Inlet Node Name
- T N2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T N2 DXAC Heat Pump, !- Component 2 Name
- T N2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T N2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T S1 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T S1 OA System, !- Component 1 Name
- AirLoop T S1 Return Air Inlet, !- Component 1 Inlet Node Name
- T S1 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T S1 DXAC Heat Pump, !- Component 2 Name
- T S1 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T S1 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- AirLoop T S2 Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- AirLoop T S2 OA System, !- Component 1 Name
- AirLoop T S2 Return Air Inlet, !- Component 1 Inlet Node Name
- T S2 Apartment Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type
- AirLoop T S2 DXAC Heat Pump, !- Component 2 Name
- T S2 Apartment Mixed Air Outlet, !- Component 2 Inlet Node Name
- AirLoop T S2 Supply Air Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G SW, !- Component 1 Name
- AirLoop G SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G NW, !- Component 1 Name
- AirLoop G NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop Office, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop Office, !- Component 1 Name
- AirLoop Office Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop Office Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G NE, !- Component 1 Name
- AirLoop G NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G N1, !- Component 1 Name
- AirLoop G N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G N2, !- Component 1 Name
- AirLoop G N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G S1, !- Component 1 Name
- AirLoop G S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop G S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop G S2, !- Component 1 Name
- AirLoop G S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 SW, !- Component 1 Name
- AirLoop F2 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 NW, !- Component 1 Name
- AirLoop F2 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 SE, !- Component 1 Name
- AirLoop F2 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 NE, !- Component 1 Name
- AirLoop F2 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 N1, !- Component 1 Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 N2, !- Component 1 Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 S1, !- Component 1 Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F2 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F2 S2, !- Component 1 Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 SW, !- Component 1 Name
- AirLoop F3 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 NW, !- Component 1 Name
- AirLoop F3 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 SE, !- Component 1 Name
- AirLoop F3 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 NE, !- Component 1 Name
- AirLoop F3 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 N1, !- Component 1 Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 N2, !- Component 1 Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 S1, !- Component 1 Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F3 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F3 S2, !- Component 1 Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 SW, !- Component 1 Name
- AirLoop F4 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 NW, !- Component 1 Name
- AirLoop F4 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 SE, !- Component 1 Name
- AirLoop F4 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 NE, !- Component 1 Name
- AirLoop F4 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 N1, !- Component 1 Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 N2, !- Component 1 Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 S1, !- Component 1 Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F4 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F4 S2, !- Component 1 Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M SW, !- Component 1 Name
- AirLoop M SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M NW, !- Component 1 Name
- AirLoop M NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M SE, !- Component 1 Name
- AirLoop M SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M NE, !- Component 1 Name
- AirLoop M NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M N1, !- Component 1 Name
- AirLoop M N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M N2, !- Component 1 Name
- AirLoop M N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M S1, !- Component 1 Name
- AirLoop M S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop M S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop M S2, !- Component 1 Name
- AirLoop M S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 SW, !- Component 1 Name
- AirLoop F6 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 NW, !- Component 1 Name
- AirLoop F6 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 SE, !- Component 1 Name
- AirLoop F6 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 NE, !- Component 1 Name
- AirLoop F6 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 N1, !- Component 1 Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 N2, !- Component 1 Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 S1, !- Component 1 Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F6 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F6 S2, !- Component 1 Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 SW, !- Component 1 Name
- AirLoop F7 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 NW, !- Component 1 Name
- AirLoop F7 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 SE, !- Component 1 Name
- AirLoop F7 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 NE, !- Component 1 Name
- AirLoop F7 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 N1, !- Component 1 Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 N2, !- Component 1 Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 S1, !- Component 1 Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F7 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F7 S2, !- Component 1 Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 SW, !- Component 1 Name
- AirLoop F8 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 NW, !- Component 1 Name
- AirLoop F8 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 SE, !- Component 1 Name
- AirLoop F8 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 NE, !- Component 1 Name
- AirLoop F8 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 N1, !- Component 1 Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 N2, !- Component 1 Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 S1, !- Component 1 Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F8 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F8 S2, !- Component 1 Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 SW, !- Component 1 Name
- AirLoop F9 SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 NW, !- Component 1 Name
- AirLoop F9 NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 SE, !- Component 1 Name
- AirLoop F9 SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 NE, !- Component 1 Name
- AirLoop F9 NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 N1, !- Component 1 Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 N2, !- Component 1 Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 S1, !- Component 1 Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop F9 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop F9 S2, !- Component 1 Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T SW, !- Component 1 Name
- AirLoop T SW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T SW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T NW, !- Component 1 Name
- AirLoop T NW Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T NW Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T SE, !- Component 1 Name
- AirLoop T SE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T SE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T NE, !- Component 1 Name
- AirLoop T NE Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T NE Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T N1, !- Component 1 Name
- AirLoop T N1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T N1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T N2, !- Component 1 Name
- AirLoop T N2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T N2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T S1, !- Component 1 Name
- AirLoop T S1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T S1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Cooling Plant Branch AirLoop T S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Cooling Mode AirLoop T S2, !- Component 1 Name
- AirLoop T S2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T S2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G SW, !- Component 1 Name
- AirLoop G SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G NW, !- Component 1 Name
- AirLoop G NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop Office, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop Office, !- Component 1 Name
- AirLoop Office Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop Office Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G NE, !- Component 1 Name
- AirLoop G NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G N1, !- Component 1 Name
- AirLoop G N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G N2, !- Component 1 Name
- AirLoop G N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G S1, !- Component 1 Name
- AirLoop G S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop G S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop G S2, !- Component 1 Name
- AirLoop G S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop G S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 SW, !- Component 1 Name
- AirLoop F2 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 NW, !- Component 1 Name
- AirLoop F2 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 SE, !- Component 1 Name
- AirLoop F2 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 NE, !- Component 1 Name
- AirLoop F2 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 N1, !- Component 1 Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 N2, !- Component 1 Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 S1, !- Component 1 Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F2 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F2 S2, !- Component 1 Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F2 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 SW, !- Component 1 Name
- AirLoop F3 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 NW, !- Component 1 Name
- AirLoop F3 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 SE, !- Component 1 Name
- AirLoop F3 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 NE, !- Component 1 Name
- AirLoop F3 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 N1, !- Component 1 Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 N2, !- Component 1 Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 S1, !- Component 1 Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F3 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F3 S2, !- Component 1 Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F3 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 SW, !- Component 1 Name
- AirLoop F4 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 NW, !- Component 1 Name
- AirLoop F4 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 SE, !- Component 1 Name
- AirLoop F4 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 NE, !- Component 1 Name
- AirLoop F4 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 N1, !- Component 1 Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 N2, !- Component 1 Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 S1, !- Component 1 Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F4 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F4 S2, !- Component 1 Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F4 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M SW, !- Component 1 Name
- AirLoop M SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M NW, !- Component 1 Name
- AirLoop M NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M SE, !- Component 1 Name
- AirLoop M SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M NE, !- Component 1 Name
- AirLoop M NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M N1, !- Component 1 Name
- AirLoop M N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M N2, !- Component 1 Name
- AirLoop M N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M S1, !- Component 1 Name
- AirLoop M S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop M S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop M S2, !- Component 1 Name
- AirLoop M S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop M S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 SW, !- Component 1 Name
- AirLoop F6 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 NW, !- Component 1 Name
- AirLoop F6 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 SE, !- Component 1 Name
- AirLoop F6 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 NE, !- Component 1 Name
- AirLoop F6 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 N1, !- Component 1 Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 N2, !- Component 1 Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 S1, !- Component 1 Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F6 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F6 S2, !- Component 1 Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F6 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 SW, !- Component 1 Name
- AirLoop F7 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 NW, !- Component 1 Name
- AirLoop F7 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 SE, !- Component 1 Name
- AirLoop F7 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 NE, !- Component 1 Name
- AirLoop F7 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 N1, !- Component 1 Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 N2, !- Component 1 Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 S1, !- Component 1 Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F7 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F7 S2, !- Component 1 Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F7 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 SW, !- Component 1 Name
- AirLoop F8 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 NW, !- Component 1 Name
- AirLoop F8 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 SE, !- Component 1 Name
- AirLoop F8 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 NE, !- Component 1 Name
- AirLoop F8 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 N1, !- Component 1 Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 N2, !- Component 1 Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 S1, !- Component 1 Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F8 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F8 S2, !- Component 1 Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F8 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 SW, !- Component 1 Name
- AirLoop F9 SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 NW, !- Component 1 Name
- AirLoop F9 NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 SE, !- Component 1 Name
- AirLoop F9 SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 NE, !- Component 1 Name
- AirLoop F9 NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 N1, !- Component 1 Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 N2, !- Component 1 Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 S1, !- Component 1 Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop F9 S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop F9 S2, !- Component 1 Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop F9 S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T SW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T SW, !- Component 1 Name
- AirLoop T SW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T SW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T NW, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T NW, !- Component 1 Name
- AirLoop T NW Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T NW Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T SE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T SE, !- Component 1 Name
- AirLoop T SE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T SE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T NE, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T NE, !- Component 1 Name
- AirLoop T NE Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T NE Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T N1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T N1, !- Component 1 Name
- AirLoop T N1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T N1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T N2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T N2, !- Component 1 Name
- AirLoop T N2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T N2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T S1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T S1, !- Component 1 Name
- AirLoop T S1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T S1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- WLHP Heating Plant Branch AirLoop T S2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type
- Heat Pump Heating Mode AirLoop T S2, !- Component 1 Name
- AirLoop T S2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name
- AirLoop T S2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name
-
-!- =========== ALL OBJECTS IN CLASS: BRANCHLIST ===========
-
- BranchList,
- SHWSys1 Supply Branches, !- Name
- SHWSys1 Supply Inlet Branch, !- Branch 1 Name
- SHWSys1 Supply Equipment Branch, !- Branch 2 Name
- SHWSys1 Supply Equipment Bypass Branch, !- Branch 3 Name
- SHWSys1 Supply Outlet Branch; !- Branch 4 Name
-
- BranchList,
- SHWSys1 Demand Branches, !- Name
- SHWSys1 Demand Inlet Branch, !- Branch 1 Name
- SHWSys1 Demand Load Branch 1, !- Branch 2 Name
- SHWSys1 Demand Load Branch 2, !- Branch 3 Name
- SHWSys1 Demand Load Branch 3, !- Branch 4 Name
- SHWSys1 Demand Load Branch 4, !- Branch 5 Name
- SHWSys1 Demand Load Branch 5, !- Branch 6 Name
- SHWSys1 Demand Load Branch 6, !- Branch 7 Name
- SHWSys1 Demand Load Branch 7, !- Branch 8 Name
- SHWSys1 Demand Load Branch 8, !- Branch 9 Name
- SHWSys1 Demand Load Branch 9, !- Branch 10 Name
- SHWSys1 Demand Load Branch 10, !- Branch 11 Name
- SHWSys1 Demand Load Branch 11, !- Branch 12 Name
- SHWSys1 Demand Load Branch 12, !- Branch 13 Name
- SHWSys1 Demand Load Branch 13, !- Branch 14 Name
- SHWSys1 Demand Load Branch 14, !- Branch 15 Name
- SHWSys1 Demand Load Branch 15, !- Branch 16 Name
- SHWSys1 Demand Load Branch 16, !- Branch 17 Name
- SHWSys1 Demand Load Branch 17, !- Branch 18 Name
- SHWSys1 Demand Load Branch 18, !- Branch 19 Name
- SHWSys1 Demand Load Branch 19, !- Branch 20 Name
- SHWSys1 Demand Load Branch 20, !- Branch 21 Name
- SHWSys1 Demand Load Branch 21, !- Branch 22 Name
- SHWSys1 Demand Load Branch 22, !- Branch 23 Name
- SHWSys1 Demand Load Branch 23, !- Branch 24 Name
- SHWSys1 Demand Load Branch 24, !- Branch 25 Name
- SHWSys1 Demand Load Branch 25, !- Branch 26 Name
- SHWSys1 Demand Load Branch 26, !- Branch 27 Name
- SHWSys1 Demand Load Branch 27, !- Branch 28 Name
- SHWSys1 Demand Load Branch 28, !- Branch 29 Name
- SHWSys1 Demand Load Branch 29, !- Branch 30 Name
- SHWSys1 Demand Load Branch 30, !- Branch 31 Name
- SHWSys1 Demand Load Branch 31, !- Branch 32 Name
- SHWSys1 Demand Load Branch 32, !- Branch 33 Name
- SHWSys1 Demand Load Branch 33, !- Branch 34 Name
- SHWSys1 Demand Load Branch 34, !- Branch 35 Name
- SHWSys1 Demand Load Branch 35, !- Branch 36 Name
- SHWSys1 Demand Load Branch 36, !- Branch 37 Name
- SHWSys1 Demand Load Branch 37, !- Branch 38 Name
- SHWSys1 Demand Load Branch 38, !- Branch 39 Name
- SHWSys1 Demand Load Branch 39, !- Branch 40 Name
- SHWSys1 Demand Load Branch 40, !- Branch 41 Name
- SHWSys1 Demand Load Branch 41, !- Branch 42 Name
- SHWSys1 Demand Load Branch 42, !- Branch 43 Name
- SHWSys1 Demand Load Branch 43, !- Branch 44 Name
- SHWSys1 Demand Load Branch 44, !- Branch 45 Name
- SHWSys1 Demand Load Branch 45, !- Branch 46 Name
- SHWSys1 Demand Load Branch 46, !- Branch 47 Name
- SHWSys1 Demand Load Branch 47, !- Branch 48 Name
- SHWSys1 Demand Load Branch 48, !- Branch 49 Name
- SHWSys1 Demand Load Branch 49, !- Branch 50 Name
- SHWSys1 Demand Load Branch 50, !- Branch 51 Name
- SHWSys1 Demand Load Branch 51, !- Branch 52 Name
- SHWSys1 Demand Load Branch 52, !- Branch 53 Name
- SHWSys1 Demand Load Branch 53, !- Branch 54 Name
- SHWSys1 Demand Load Branch 54, !- Branch 55 Name
- SHWSys1 Demand Load Branch 55, !- Branch 56 Name
- SHWSys1 Demand Load Branch 56, !- Branch 57 Name
- SHWSys1 Demand Load Branch 57, !- Branch 58 Name
- SHWSys1 Demand Load Branch 58, !- Branch 59 Name
- SHWSys1 Demand Load Branch 59, !- Branch 60 Name
- SHWSys1 Demand Load Branch 60, !- Branch 61 Name
- SHWSys1 Demand Load Branch 61, !- Branch 62 Name
- SHWSys1 Demand Load Branch 62, !- Branch 63 Name
- SHWSys1 Demand Load Branch 63, !- Branch 64 Name
- SHWSys1 Demand Load Branch 64, !- Branch 65 Name
- SHWSys1 Demand Load Branch 65, !- Branch 66 Name
- SHWSys1 Demand Load Branch 66, !- Branch 67 Name
- SHWSys1 Demand Load Branch 67, !- Branch 68 Name
- SHWSys1 Demand Load Branch 68, !- Branch 69 Name
- SHWSys1 Demand Load Branch 69, !- Branch 70 Name
- SHWSys1 Demand Load Branch 70, !- Branch 71 Name
- SHWSys1 Demand Load Branch 71, !- Branch 72 Name
- SHWSys1 Demand Load Branch 72, !- Branch 73 Name
- SHWSys1 Demand Load Branch 73, !- Branch 74 Name
- SHWSys1 Demand Load Branch 74, !- Branch 75 Name
- SHWSys1 Demand Load Branch 75, !- Branch 76 Name
- SHWSys1 Demand Load Branch 76, !- Branch 77 Name
- SHWSys1 Demand Load Branch 77, !- Branch 78 Name
- SHWSys1 Demand Load Branch 78, !- Branch 79 Name
- SHWSys1 Demand Load Branch 79, !- Branch 80 Name
- SHWSys1 Demand Bypass Branch, !- Branch 81 Name
- SHWSys1 Demand Outlet Branch; !- Branch 82 Name
-
- BranchList,
- Plant Supply Side Branches, !- Name
- Plant Supply Inlet Branch, !- Branch 1 Name
- Plant Supply Tower Branch, !- Branch 2 Name
- Central Boiler Branch, !- Branch 3 Name
- Plant Supply Bypass Branch, !- Branch 4 Name
- Plant Supply Outlet Branch; !- Branch 5 Name
-
- BranchList,
- AirLoop G SW Branches, !- Name
- AirLoop G SW Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop G NW Branches, !- Name
- AirLoop G NW Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop Office Branches, !- Name
- AirLoop Office Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop G NE Branches, !- Name
- AirLoop G NE Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop G N1 Branches, !- Name
- AirLoop G N1 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop G N2 Branches, !- Name
- AirLoop G N2 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop G S1 Branches, !- Name
- AirLoop G S1 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop G S2 Branches, !- Name
- AirLoop G S2 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop F2 SW Branches, !- Name
- AirLoop F2 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 NW Branches, !- Name
- AirLoop F2 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 SE Branches, !- Name
- AirLoop F2 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 NE Branches, !- Name
- AirLoop F2 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 N1 Branches, !- Name
- AirLoop F2 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 N2 Branches, !- Name
- AirLoop F2 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 S1 Branches, !- Name
- AirLoop F2 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F2 S2 Branches, !- Name
- AirLoop F2 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 SW Branches, !- Name
- AirLoop F3 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 NW Branches, !- Name
- AirLoop F3 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 SE Branches, !- Name
- AirLoop F3 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 NE Branches, !- Name
- AirLoop F3 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 N1 Branches, !- Name
- AirLoop F3 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 N2 Branches, !- Name
- AirLoop F3 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 S1 Branches, !- Name
- AirLoop F3 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F3 S2 Branches, !- Name
- AirLoop F3 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 SW Branches, !- Name
- AirLoop F4 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 NW Branches, !- Name
- AirLoop F4 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 SE Branches, !- Name
- AirLoop F4 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 NE Branches, !- Name
- AirLoop F4 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 N1 Branches, !- Name
- AirLoop F4 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 N2 Branches, !- Name
- AirLoop F4 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 S1 Branches, !- Name
- AirLoop F4 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F4 S2 Branches, !- Name
- AirLoop F4 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop M SW Branches, !- Name
- AirLoop M SW Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M NW Branches, !- Name
- AirLoop M NW Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M SE Branches, !- Name
- AirLoop M SE Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M NE Branches, !- Name
- AirLoop M NE Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M N1 Branches, !- Name
- AirLoop M N1 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M N2 Branches, !- Name
- AirLoop M N2 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M S1 Branches, !- Name
- AirLoop M S1 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop M S2 Branches, !- Name
- AirLoop M S2 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop F6 SW Branches, !- Name
- AirLoop F6 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 NW Branches, !- Name
- AirLoop F6 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 SE Branches, !- Name
- AirLoop F6 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 NE Branches, !- Name
- AirLoop F6 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 N1 Branches, !- Name
- AirLoop F6 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 N2 Branches, !- Name
- AirLoop F6 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 S1 Branches, !- Name
- AirLoop F6 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F6 S2 Branches, !- Name
- AirLoop F6 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 SW Branches, !- Name
- AirLoop F7 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 NW Branches, !- Name
- AirLoop F7 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 SE Branches, !- Name
- AirLoop F7 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 NE Branches, !- Name
- AirLoop F7 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 N1 Branches, !- Name
- AirLoop F7 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 N2 Branches, !- Name
- AirLoop F7 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 S1 Branches, !- Name
- AirLoop F7 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F7 S2 Branches, !- Name
- AirLoop F7 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 SW Branches, !- Name
- AirLoop F8 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 NW Branches, !- Name
- AirLoop F8 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 SE Branches, !- Name
- AirLoop F8 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 NE Branches, !- Name
- AirLoop F8 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 N1 Branches, !- Name
- AirLoop F8 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 N2 Branches, !- Name
- AirLoop F8 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 S1 Branches, !- Name
- AirLoop F8 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F8 S2 Branches, !- Name
- AirLoop F8 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 SW Branches, !- Name
- AirLoop F9 SW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 NW Branches, !- Name
- AirLoop F9 NW Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 SE Branches, !- Name
- AirLoop F9 SE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 NE Branches, !- Name
- AirLoop F9 NE Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 N1 Branches, !- Name
- AirLoop F9 N1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 N2 Branches, !- Name
- AirLoop F9 N2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 S1 Branches, !- Name
- AirLoop F9 S1 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop F9 S2 Branches, !- Name
- AirLoop F9 S2 Main Branch; !- Branch 1 Name
-
- BranchList,
- AirLoop T SW Branches, !- Name
- AirLoop T SW Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T NW Branches, !- Name
- AirLoop T NW Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T SE Branches, !- Name
- AirLoop T SE Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T NE Branches, !- Name
- AirLoop T NE Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T N1 Branches, !- Name
- AirLoop T N1 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T N2 Branches, !- Name
- AirLoop T N2 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T S1 Branches, !- Name
- AirLoop T S1 Main Branch;!- Branch 1 Name
-
- BranchList,
- AirLoop T S2 Branches, !- Name
- AirLoop T S2 Main Branch;!- Branch 1 Name
-
- BranchList,
- Plant Demand Side Branches, !- Name
- Plant Demand Inlet Branch, !- Branch 1 Name
- WLHP Cooling Plant Branch AirLoop G SW, !- Branch 2 Name
- WLHP Heating Plant Branch AirLoop G SW, !- Branch 3 Name
- WLHP Cooling Plant Branch AirLoop G NW, !- Branch 4 Name
- WLHP Heating Plant Branch AirLoop G NW, !- Branch 5 Name
- WLHP Cooling Plant Branch AirLoop Office, !- Branch 6 Name
- WLHP Heating Plant Branch AirLoop Office, !- Branch 7 Name
- WLHP Cooling Plant Branch AirLoop G NE, !- Branch 8 Name
- WLHP Heating Plant Branch AirLoop G NE, !- Branch 9 Name
- WLHP Cooling Plant Branch AirLoop G N1, !- Branch 10 Name
- WLHP Heating Plant Branch AirLoop G N1, !- Branch 11 Name
- WLHP Cooling Plant Branch AirLoop G N2, !- Branch 12 Name
- WLHP Heating Plant Branch AirLoop G N2, !- Branch 13 Name
- WLHP Cooling Plant Branch AirLoop G S1, !- Branch 14 Name
- WLHP Heating Plant Branch AirLoop G S1, !- Branch 15 Name
- WLHP Cooling Plant Branch AirLoop G S2, !- Branch 16 Name
- WLHP Heating Plant Branch AirLoop G S2, !- Branch 17 Name
- WLHP Cooling Plant Branch AirLoop F2 SW, !- Branch 18 Name
- WLHP Heating Plant Branch AirLoop F2 SW, !- Branch 19 Name
- WLHP Cooling Plant Branch AirLoop F2 NW, !- Branch 20 Name
- WLHP Heating Plant Branch AirLoop F2 NW, !- Branch 21 Name
- WLHP Cooling Plant Branch AirLoop F2 SE, !- Branch 22 Name
- WLHP Heating Plant Branch AirLoop F2 SE, !- Branch 23 Name
- WLHP Cooling Plant Branch AirLoop F2 NE, !- Branch 24 Name
- WLHP Heating Plant Branch AirLoop F2 NE, !- Branch 25 Name
- WLHP Cooling Plant Branch AirLoop F2 N1, !- Branch 26 Name
- WLHP Heating Plant Branch AirLoop F2 N1, !- Branch 27 Name
- WLHP Cooling Plant Branch AirLoop F2 N2, !- Branch 28 Name
- WLHP Heating Plant Branch AirLoop F2 N2, !- Branch 29 Name
- WLHP Cooling Plant Branch AirLoop F2 S1, !- Branch 30 Name
- WLHP Heating Plant Branch AirLoop F2 S1, !- Branch 31 Name
- WLHP Cooling Plant Branch AirLoop F2 S2, !- Branch 32 Name
- WLHP Heating Plant Branch AirLoop F2 S2, !- Branch 33 Name
- WLHP Cooling Plant Branch AirLoop F3 SW, !- Branch 34 Name
- WLHP Heating Plant Branch AirLoop F3 SW, !- Branch 35 Name
- WLHP Cooling Plant Branch AirLoop F3 NW, !- Branch 36 Name
- WLHP Heating Plant Branch AirLoop F3 NW, !- Branch 37 Name
- WLHP Cooling Plant Branch AirLoop F3 SE, !- Branch 38 Name
- WLHP Heating Plant Branch AirLoop F3 SE, !- Branch 39 Name
- WLHP Cooling Plant Branch AirLoop F3 NE, !- Branch 40 Name
- WLHP Heating Plant Branch AirLoop F3 NE, !- Branch 41 Name
- WLHP Cooling Plant Branch AirLoop F3 N1, !- Branch 42 Name
- WLHP Heating Plant Branch AirLoop F3 N1, !- Branch 43 Name
- WLHP Cooling Plant Branch AirLoop F3 N2, !- Branch 44 Name
- WLHP Heating Plant Branch AirLoop F3 N2, !- Branch 45 Name
- WLHP Cooling Plant Branch AirLoop F3 S1, !- Branch 46 Name
- WLHP Heating Plant Branch AirLoop F3 S1, !- Branch 47 Name
- WLHP Cooling Plant Branch AirLoop F3 S2, !- Branch 48 Name
- WLHP Heating Plant Branch AirLoop F3 S2, !- Branch 49 Name
- WLHP Cooling Plant Branch AirLoop F4 SW, !- Branch 50 Name
- WLHP Heating Plant Branch AirLoop F4 SW, !- Branch 51 Name
- WLHP Cooling Plant Branch AirLoop F4 NW, !- Branch 52 Name
- WLHP Heating Plant Branch AirLoop F4 NW, !- Branch 53 Name
- WLHP Cooling Plant Branch AirLoop F4 SE, !- Branch 54 Name
- WLHP Heating Plant Branch AirLoop F4 SE, !- Branch 55 Name
- WLHP Cooling Plant Branch AirLoop F4 NE, !- Branch 56 Name
- WLHP Heating Plant Branch AirLoop F4 NE, !- Branch 57 Name
- WLHP Cooling Plant Branch AirLoop F4 N1, !- Branch 58 Name
- WLHP Heating Plant Branch AirLoop F4 N1, !- Branch 59 Name
- WLHP Cooling Plant Branch AirLoop F4 N2, !- Branch 60 Name
- WLHP Heating Plant Branch AirLoop F4 N2, !- Branch 61 Name
- WLHP Cooling Plant Branch AirLoop F4 S1, !- Branch 62 Name
- WLHP Heating Plant Branch AirLoop F4 S1, !- Branch 63 Name
- WLHP Cooling Plant Branch AirLoop F4 S2, !- Branch 64 Name
- WLHP Heating Plant Branch AirLoop F4 S2, !- Branch 65 Name
- WLHP Cooling Plant Branch AirLoop M SW, !- Branch 66 Name
- WLHP Heating Plant Branch AirLoop M SW, !- Branch 67 Name
- WLHP Cooling Plant Branch AirLoop M NW, !- Branch 68 Name
- WLHP Heating Plant Branch AirLoop M NW, !- Branch 69 Name
- WLHP Cooling Plant Branch AirLoop M SE, !- Branch 70 Name
- WLHP Heating Plant Branch AirLoop M SE, !- Branch 71 Name
- WLHP Cooling Plant Branch AirLoop M NE, !- Branch 72 Name
- WLHP Heating Plant Branch AirLoop M NE, !- Branch 73 Name
- WLHP Cooling Plant Branch AirLoop M N1, !- Branch 74 Name
- WLHP Heating Plant Branch AirLoop M N1, !- Branch 75 Name
- WLHP Cooling Plant Branch AirLoop M N2, !- Branch 76 Name
- WLHP Heating Plant Branch AirLoop M N2, !- Branch 77 Name
- WLHP Cooling Plant Branch AirLoop M S1, !- Branch 78 Name
- WLHP Heating Plant Branch AirLoop M S1, !- Branch 79 Name
- WLHP Cooling Plant Branch AirLoop M S2, !- Branch 80 Name
- WLHP Heating Plant Branch AirLoop M S2, !- Branch 81 Name
- WLHP Cooling Plant Branch AirLoop F6 SW, !- Branch 82 Name
- WLHP Heating Plant Branch AirLoop F6 SW, !- Branch 83 Name
- WLHP Cooling Plant Branch AirLoop F6 NW, !- Branch 84 Name
- WLHP Heating Plant Branch AirLoop F6 NW, !- Branch 85 Name
- WLHP Cooling Plant Branch AirLoop F6 SE, !- Branch 86 Name
- WLHP Heating Plant Branch AirLoop F6 SE, !- Branch 87 Name
- WLHP Cooling Plant Branch AirLoop F6 NE, !- Branch 88 Name
- WLHP Heating Plant Branch AirLoop F6 NE, !- Branch 89 Name
- WLHP Cooling Plant Branch AirLoop F6 N1, !- Branch 90 Name
- WLHP Heating Plant Branch AirLoop F6 N1, !- Branch 91 Name
- WLHP Cooling Plant Branch AirLoop F6 N2, !- Branch 92 Name
- WLHP Heating Plant Branch AirLoop F6 N2, !- Branch 93 Name
- WLHP Cooling Plant Branch AirLoop F6 S1, !- Branch 94 Name
- WLHP Heating Plant Branch AirLoop F6 S1, !- Branch 95 Name
- WLHP Cooling Plant Branch AirLoop F6 S2, !- Branch 96 Name
- WLHP Heating Plant Branch AirLoop F6 S2, !- Branch 97 Name
- WLHP Cooling Plant Branch AirLoop F7 SW, !- Branch 98 Name
- WLHP Heating Plant Branch AirLoop F7 SW, !- Branch 99 Name
- WLHP Cooling Plant Branch AirLoop F7 NW, !- Branch 100 Name
- WLHP Heating Plant Branch AirLoop F7 NW, !-
- WLHP Cooling Plant Branch AirLoop F7 SE, !-
- WLHP Heating Plant Branch AirLoop F7 SE, !-
- WLHP Cooling Plant Branch AirLoop F7 NE, !-
- WLHP Heating Plant Branch AirLoop F7 NE, !-
- WLHP Cooling Plant Branch AirLoop F7 N1, !-
- WLHP Heating Plant Branch AirLoop F7 N1, !-
- WLHP Cooling Plant Branch AirLoop F7 N2, !-
- WLHP Heating Plant Branch AirLoop F7 N2, !-
- WLHP Cooling Plant Branch AirLoop F7 S1, !-
- WLHP Heating Plant Branch AirLoop F7 S1, !-
- WLHP Cooling Plant Branch AirLoop F7 S2, !-
- WLHP Heating Plant Branch AirLoop F7 S2, !-
- WLHP Cooling Plant Branch AirLoop F8 SW, !-
- WLHP Heating Plant Branch AirLoop F8 SW, !-
- WLHP Cooling Plant Branch AirLoop F8 NW, !-
- WLHP Heating Plant Branch AirLoop F8 NW, !-
- WLHP Cooling Plant Branch AirLoop F8 SE, !-
- WLHP Heating Plant Branch AirLoop F8 SE, !-
- WLHP Cooling Plant Branch AirLoop F8 NE, !-
- WLHP Heating Plant Branch AirLoop F8 NE, !-
- WLHP Cooling Plant Branch AirLoop F8 N1, !-
- WLHP Heating Plant Branch AirLoop F8 N1, !-
- WLHP Cooling Plant Branch AirLoop F8 N2, !-
- WLHP Heating Plant Branch AirLoop F8 N2, !-
- WLHP Cooling Plant Branch AirLoop F8 S1, !-
- WLHP Heating Plant Branch AirLoop F8 S1, !-
- WLHP Cooling Plant Branch AirLoop F8 S2, !-
- WLHP Heating Plant Branch AirLoop F8 S2, !-
- WLHP Cooling Plant Branch AirLoop F9 SW, !-
- WLHP Heating Plant Branch AirLoop F9 SW, !-
- WLHP Cooling Plant Branch AirLoop F9 NW, !-
- WLHP Heating Plant Branch AirLoop F9 NW, !-
- WLHP Cooling Plant Branch AirLoop F9 SE, !-
- WLHP Heating Plant Branch AirLoop F9 SE, !-
- WLHP Cooling Plant Branch AirLoop F9 NE, !-
- WLHP Heating Plant Branch AirLoop F9 NE, !-
- WLHP Cooling Plant Branch AirLoop F9 N1, !-
- WLHP Heating Plant Branch AirLoop F9 N1, !-
- WLHP Cooling Plant Branch AirLoop F9 N2, !-
- WLHP Heating Plant Branch AirLoop F9 N2, !-
- WLHP Cooling Plant Branch AirLoop F9 S1, !-
- WLHP Heating Plant Branch AirLoop F9 S1, !-
- WLHP Cooling Plant Branch AirLoop F9 S2, !-
- WLHP Heating Plant Branch AirLoop F9 S2, !-
- WLHP Cooling Plant Branch AirLoop T SW, !-
- WLHP Heating Plant Branch AirLoop T SW, !-
- WLHP Cooling Plant Branch AirLoop T NW, !-
- WLHP Heating Plant Branch AirLoop T NW, !-
- WLHP Cooling Plant Branch AirLoop T SE, !-
- WLHP Heating Plant Branch AirLoop T SE, !-
- WLHP Cooling Plant Branch AirLoop T NE, !-
- WLHP Heating Plant Branch AirLoop T NE, !-
- WLHP Cooling Plant Branch AirLoop T N1, !-
- WLHP Heating Plant Branch AirLoop T N1, !-
- WLHP Cooling Plant Branch AirLoop T N2, !-
- WLHP Heating Plant Branch AirLoop T N2, !-
- WLHP Cooling Plant Branch AirLoop T S1, !-
- WLHP Heating Plant Branch AirLoop T S1, !-
- WLHP Cooling Plant Branch AirLoop T S2, !-
- WLHP Heating Plant Branch AirLoop T S2, !-
- Plant Demand Bypass Branch, !-
- Plant Demand Outlet Branch; !-
-
-!- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER ===========
-
- Connector:Splitter,
- SHWSys1 Supply Splitter, !- Name
- SHWSys1 Supply Inlet Branch, !- Inlet Branch Name
- SHWSys1 Supply Equipment Branch, !- Outlet Branch 1 Name
- SHWSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name
-
- Connector:Splitter,
- SHWSys1 Demand Splitter, !- Name
- SHWSys1 Demand Inlet Branch, !- Inlet Branch Name
- SHWSys1 Demand Load Branch 1, !- Outlet Branch 1 Name
- SHWSys1 Demand Load Branch 2, !- Outlet Branch 2 Name
- SHWSys1 Demand Load Branch 3, !- Outlet Branch 3 Name
- SHWSys1 Demand Load Branch 4, !- Outlet Branch 4 Name
- SHWSys1 Demand Load Branch 5, !- Outlet Branch 5 Name
- SHWSys1 Demand Load Branch 6, !- Outlet Branch 6 Name
- SHWSys1 Demand Load Branch 7, !- Outlet Branch 7 Name
- SHWSys1 Demand Load Branch 8, !- Outlet Branch 8 Name
- SHWSys1 Demand Load Branch 9, !- Outlet Branch 9 Name
- SHWSys1 Demand Load Branch 10, !- Outlet Branch 10 Name
- SHWSys1 Demand Load Branch 11, !- Outlet Branch 11 Name
- SHWSys1 Demand Load Branch 12, !- Outlet Branch 12 Name
- SHWSys1 Demand Load Branch 13, !- Outlet Branch 13 Name
- SHWSys1 Demand Load Branch 14, !- Outlet Branch 14 Name
- SHWSys1 Demand Load Branch 15, !- Outlet Branch 15 Name
- SHWSys1 Demand Load Branch 16, !- Outlet Branch 16 Name
- SHWSys1 Demand Load Branch 17, !- Outlet Branch 17 Name
- SHWSys1 Demand Load Branch 18, !- Outlet Branch 18 Name
- SHWSys1 Demand Load Branch 19, !- Outlet Branch 19 Name
- SHWSys1 Demand Load Branch 20, !- Outlet Branch 20 Name
- SHWSys1 Demand Load Branch 21, !- Outlet Branch 21 Name
- SHWSys1 Demand Load Branch 22, !- Outlet Branch 22 Name
- SHWSys1 Demand Load Branch 23, !- Outlet Branch 23 Name
- SHWSys1 Demand Load Branch 24, !- Outlet Branch 24 Name
- SHWSys1 Demand Load Branch 25, !- Outlet Branch 25 Name
- SHWSys1 Demand Load Branch 26, !- Outlet Branch 26 Name
- SHWSys1 Demand Load Branch 27, !- Outlet Branch 27 Name
- SHWSys1 Demand Load Branch 28, !- Outlet Branch 28 Name
- SHWSys1 Demand Load Branch 29, !- Outlet Branch 29 Name
- SHWSys1 Demand Load Branch 30, !- Outlet Branch 30 Name
- SHWSys1 Demand Load Branch 31, !- Outlet Branch 31 Name
- SHWSys1 Demand Load Branch 32, !- Outlet Branch 32 Name
- SHWSys1 Demand Load Branch 33, !- Outlet Branch 33 Name
- SHWSys1 Demand Load Branch 34, !- Outlet Branch 34 Name
- SHWSys1 Demand Load Branch 35, !- Outlet Branch 35 Name
- SHWSys1 Demand Load Branch 36, !- Outlet Branch 36 Name
- SHWSys1 Demand Load Branch 37, !- Outlet Branch 37 Name
- SHWSys1 Demand Load Branch 38, !- Outlet Branch 38 Name
- SHWSys1 Demand Load Branch 39, !- Outlet Branch 39 Name
- SHWSys1 Demand Load Branch 40, !- Outlet Branch 40 Name
- SHWSys1 Demand Load Branch 41, !- Outlet Branch 41 Name
- SHWSys1 Demand Load Branch 42, !- Outlet Branch 42 Name
- SHWSys1 Demand Load Branch 43, !- Outlet Branch 43 Name
- SHWSys1 Demand Load Branch 44, !- Outlet Branch 44 Name
- SHWSys1 Demand Load Branch 45, !- Outlet Branch 45 Name
- SHWSys1 Demand Load Branch 46, !- Outlet Branch 46 Name
- SHWSys1 Demand Load Branch 47, !- Outlet Branch 47 Name
- SHWSys1 Demand Load Branch 48, !- Outlet Branch 48 Name
- SHWSys1 Demand Load Branch 49, !- Outlet Branch 49 Name
- SHWSys1 Demand Load Branch 50, !- Outlet Branch 50 Name
- SHWSys1 Demand Load Branch 51, !- Outlet Branch 51 Name
- SHWSys1 Demand Load Branch 52, !- Outlet Branch 52 Name
- SHWSys1 Demand Load Branch 53, !- Outlet Branch 53 Name
- SHWSys1 Demand Load Branch 54, !- Outlet Branch 54 Name
- SHWSys1 Demand Load Branch 55, !- Outlet Branch 55 Name
- SHWSys1 Demand Load Branch 56, !- Outlet Branch 56 Name
- SHWSys1 Demand Load Branch 57, !- Outlet Branch 57 Name
- SHWSys1 Demand Load Branch 58, !- Outlet Branch 58 Name
- SHWSys1 Demand Load Branch 59, !- Outlet Branch 59 Name
- SHWSys1 Demand Load Branch 60, !- Outlet Branch 60 Name
- SHWSys1 Demand Load Branch 61, !- Outlet Branch 61 Name
- SHWSys1 Demand Load Branch 62, !- Outlet Branch 62 Name
- SHWSys1 Demand Load Branch 63, !- Outlet Branch 63 Name
- SHWSys1 Demand Load Branch 64, !- Outlet Branch 64 Name
- SHWSys1 Demand Load Branch 65, !- Outlet Branch 65 Name
- SHWSys1 Demand Load Branch 66, !- Outlet Branch 66 Name
- SHWSys1 Demand Load Branch 67, !- Outlet Branch 67 Name
- SHWSys1 Demand Load Branch 68, !- Outlet Branch 68 Name
- SHWSys1 Demand Load Branch 69, !- Outlet Branch 69 Name
- SHWSys1 Demand Load Branch 70, !- Outlet Branch 70 Name
- SHWSys1 Demand Load Branch 71, !- Outlet Branch 71 Name
- SHWSys1 Demand Load Branch 72, !- Outlet Branch 72 Name
- SHWSys1 Demand Load Branch 73, !- Outlet Branch 73 Name
- SHWSys1 Demand Load Branch 74, !- Outlet Branch 74 Name
- SHWSys1 Demand Load Branch 75, !- Outlet Branch 75 Name
- SHWSys1 Demand Load Branch 76, !- Outlet Branch 76 Name
- SHWSys1 Demand Load Branch 77, !- Outlet Branch 77 Name
- SHWSys1 Demand Load Branch 78, !- Outlet Branch 78 Name
- SHWSys1 Demand Load Branch 79, !- Outlet Branch 79 Name
- SHWSys1 Demand Bypass Branch; !- Outlet Branch 80 Name
-
- Connector:Splitter,
- Plant Supply Splitter, !- Name
- Plant Supply Inlet Branch, !- Inlet Branch Name
- Plant Supply Tower Branch, !- Outlet Branch 1 Name
- Central Boiler Branch, !- Outlet Branch 2 Name
- Plant Supply Bypass Branch; !- Outlet Branch 3 Name
-
- Connector:Splitter,
- Plant Demand Splitter, !- Name
- Plant Demand Inlet Branch, !- Inlet Branch Name
- WLHP Cooling Plant Branch AirLoop G SW, !- Outlet Branch 1 Name
- WLHP Heating Plant Branch AirLoop G SW, !- Outlet Branch 2 Name
- WLHP Cooling Plant Branch AirLoop G NW, !- Outlet Branch 3 Name
- WLHP Heating Plant Branch AirLoop G NW, !- Outlet Branch 4 Name
- WLHP Cooling Plant Branch AirLoop Office, !- Outlet Branch 5 Name
- WLHP Heating Plant Branch AirLoop Office, !- Outlet Branch 6 Name
- WLHP Cooling Plant Branch AirLoop G NE, !- Outlet Branch 7 Name
- WLHP Heating Plant Branch AirLoop G NE, !- Outlet Branch 8 Name
- WLHP Cooling Plant Branch AirLoop G N1, !- Outlet Branch 9 Name
- WLHP Heating Plant Branch AirLoop G N1, !- Outlet Branch 10 Name
- WLHP Cooling Plant Branch AirLoop G N2, !- Outlet Branch 11 Name
- WLHP Heating Plant Branch AirLoop G N2, !- Outlet Branch 12 Name
- WLHP Cooling Plant Branch AirLoop G S1, !- Outlet Branch 13 Name
- WLHP Heating Plant Branch AirLoop G S1, !- Outlet Branch 14 Name
- WLHP Cooling Plant Branch AirLoop G S2, !- Outlet Branch 15 Name
- WLHP Heating Plant Branch AirLoop G S2, !- Outlet Branch 16 Name
- WLHP Cooling Plant Branch AirLoop F2 SW, !- Outlet Branch 17 Name
- WLHP Heating Plant Branch AirLoop F2 SW, !- Outlet Branch 18 Name
- WLHP Cooling Plant Branch AirLoop F2 NW, !- Outlet Branch 19 Name
- WLHP Heating Plant Branch AirLoop F2 NW, !- Outlet Branch 20 Name
- WLHP Cooling Plant Branch AirLoop F2 SE, !- Outlet Branch 21 Name
- WLHP Heating Plant Branch AirLoop F2 SE, !- Outlet Branch 22 Name
- WLHP Cooling Plant Branch AirLoop F2 NE, !- Outlet Branch 23 Name
- WLHP Heating Plant Branch AirLoop F2 NE, !- Outlet Branch 24 Name
- WLHP Cooling Plant Branch AirLoop F2 N1, !- Outlet Branch 25 Name
- WLHP Heating Plant Branch AirLoop F2 N1, !- Outlet Branch 26 Name
- WLHP Cooling Plant Branch AirLoop F2 N2, !- Outlet Branch 27 Name
- WLHP Heating Plant Branch AirLoop F2 N2, !- Outlet Branch 28 Name
- WLHP Cooling Plant Branch AirLoop F2 S1, !- Outlet Branch 29 Name
- WLHP Heating Plant Branch AirLoop F2 S1, !- Outlet Branch 30 Name
- WLHP Cooling Plant Branch AirLoop F2 S2, !- Outlet Branch 31 Name
- WLHP Heating Plant Branch AirLoop F2 S2, !- Outlet Branch 32 Name
- WLHP Cooling Plant Branch AirLoop F3 SW, !- Outlet Branch 33 Name
- WLHP Heating Plant Branch AirLoop F3 SW, !- Outlet Branch 34 Name
- WLHP Cooling Plant Branch AirLoop F3 NW, !- Outlet Branch 35 Name
- WLHP Heating Plant Branch AirLoop F3 NW, !- Outlet Branch 36 Name
- WLHP Cooling Plant Branch AirLoop F3 SE, !- Outlet Branch 37 Name
- WLHP Heating Plant Branch AirLoop F3 SE, !- Outlet Branch 38 Name
- WLHP Cooling Plant Branch AirLoop F3 NE, !- Outlet Branch 39 Name
- WLHP Heating Plant Branch AirLoop F3 NE, !- Outlet Branch 40 Name
- WLHP Cooling Plant Branch AirLoop F3 N1, !- Outlet Branch 41 Name
- WLHP Heating Plant Branch AirLoop F3 N1, !- Outlet Branch 42 Name
- WLHP Cooling Plant Branch AirLoop F3 N2, !- Outlet Branch 43 Name
- WLHP Heating Plant Branch AirLoop F3 N2, !- Outlet Branch 44 Name
- WLHP Cooling Plant Branch AirLoop F3 S1, !- Outlet Branch 45 Name
- WLHP Heating Plant Branch AirLoop F3 S1, !- Outlet Branch 46 Name
- WLHP Cooling Plant Branch AirLoop F3 S2, !- Outlet Branch 47 Name
- WLHP Heating Plant Branch AirLoop F3 S2, !- Outlet Branch 48 Name
- WLHP Cooling Plant Branch AirLoop F4 SW, !- Outlet Branch 49 Name
- WLHP Heating Plant Branch AirLoop F4 SW, !- Outlet Branch 50 Name
- WLHP Cooling Plant Branch AirLoop F4 NW, !- Outlet Branch 51 Name
- WLHP Heating Plant Branch AirLoop F4 NW, !- Outlet Branch 52 Name
- WLHP Cooling Plant Branch AirLoop F4 SE, !- Outlet Branch 53 Name
- WLHP Heating Plant Branch AirLoop F4 SE, !- Outlet Branch 54 Name
- WLHP Cooling Plant Branch AirLoop F4 NE, !- Outlet Branch 55 Name
- WLHP Heating Plant Branch AirLoop F4 NE, !- Outlet Branch 56 Name
- WLHP Cooling Plant Branch AirLoop F4 N1, !- Outlet Branch 57 Name
- WLHP Heating Plant Branch AirLoop F4 N1, !- Outlet Branch 58 Name
- WLHP Cooling Plant Branch AirLoop F4 N2, !- Outlet Branch 59 Name
- WLHP Heating Plant Branch AirLoop F4 N2, !- Outlet Branch 60 Name
- WLHP Cooling Plant Branch AirLoop F4 S1, !- Outlet Branch 61 Name
- WLHP Heating Plant Branch AirLoop F4 S1, !- Outlet Branch 62 Name
- WLHP Cooling Plant Branch AirLoop F4 S2, !- Outlet Branch 63 Name
- WLHP Heating Plant Branch AirLoop F4 S2, !- Outlet Branch 64 Name
- WLHP Cooling Plant Branch AirLoop M SW, !- Outlet Branch 65 Name
- WLHP Heating Plant Branch AirLoop M SW, !- Outlet Branch 66 Name
- WLHP Cooling Plant Branch AirLoop M NW, !- Outlet Branch 67 Name
- WLHP Heating Plant Branch AirLoop M NW, !- Outlet Branch 68 Name
- WLHP Cooling Plant Branch AirLoop M SE, !- Outlet Branch 69 Name
- WLHP Heating Plant Branch AirLoop M SE, !- Outlet Branch 70 Name
- WLHP Cooling Plant Branch AirLoop M NE, !- Outlet Branch 71 Name
- WLHP Heating Plant Branch AirLoop M NE, !- Outlet Branch 72 Name
- WLHP Cooling Plant Branch AirLoop M N1, !- Outlet Branch 73 Name
- WLHP Heating Plant Branch AirLoop M N1, !- Outlet Branch 74 Name
- WLHP Cooling Plant Branch AirLoop M N2, !- Outlet Branch 75 Name
- WLHP Heating Plant Branch AirLoop M N2, !- Outlet Branch 76 Name
- WLHP Cooling Plant Branch AirLoop M S1, !- Outlet Branch 77 Name
- WLHP Heating Plant Branch AirLoop M S1, !- Outlet Branch 78 Name
- WLHP Cooling Plant Branch AirLoop M S2, !- Outlet Branch 79 Name
- WLHP Heating Plant Branch AirLoop M S2, !- Outlet Branch 80 Name
- WLHP Cooling Plant Branch AirLoop F6 SW, !- Outlet Branch 81 Name
- WLHP Heating Plant Branch AirLoop F6 SW, !- Outlet Branch 82 Name
- WLHP Cooling Plant Branch AirLoop F6 NW, !- Outlet Branch 83 Name
- WLHP Heating Plant Branch AirLoop F6 NW, !- Outlet Branch 84 Name
- WLHP Cooling Plant Branch AirLoop F6 SE, !- Outlet Branch 85 Name
- WLHP Heating Plant Branch AirLoop F6 SE, !- Outlet Branch 86 Name
- WLHP Cooling Plant Branch AirLoop F6 NE, !- Outlet Branch 87 Name
- WLHP Heating Plant Branch AirLoop F6 NE, !- Outlet Branch 88 Name
- WLHP Cooling Plant Branch AirLoop F6 N1, !- Outlet Branch 89 Name
- WLHP Heating Plant Branch AirLoop F6 N1, !- Outlet Branch 90 Name
- WLHP Cooling Plant Branch AirLoop F6 N2, !- Outlet Branch 91 Name
- WLHP Heating Plant Branch AirLoop F6 N2, !- Outlet Branch 92 Name
- WLHP Cooling Plant Branch AirLoop F6 S1, !- Outlet Branch 93 Name
- WLHP Heating Plant Branch AirLoop F6 S1, !- Outlet Branch 94 Name
- WLHP Cooling Plant Branch AirLoop F6 S2, !- Outlet Branch 95 Name
- WLHP Heating Plant Branch AirLoop F6 S2, !- Outlet Branch 96 Name
- WLHP Cooling Plant Branch AirLoop F7 SW, !- Outlet Branch 97 Name
- WLHP Heating Plant Branch AirLoop F7 SW, !- Outlet Branch 98 Name
- WLHP Cooling Plant Branch AirLoop F7 NW, !- Outlet Branch 99 Name
- WLHP Heating Plant Branch AirLoop F7 NW, !- Outlet Branch 100 Name
- WLHP Cooling Plant Branch AirLoop F7 SE, !-
- WLHP Heating Plant Branch AirLoop F7 SE, !-
- WLHP Cooling Plant Branch AirLoop F7 NE, !-
- WLHP Heating Plant Branch AirLoop F7 NE, !-
- WLHP Cooling Plant Branch AirLoop F7 N1, !-
- WLHP Heating Plant Branch AirLoop F7 N1, !-
- WLHP Cooling Plant Branch AirLoop F7 N2, !-
- WLHP Heating Plant Branch AirLoop F7 N2, !-
- WLHP Cooling Plant Branch AirLoop F7 S1, !-
- WLHP Heating Plant Branch AirLoop F7 S1, !-
- WLHP Cooling Plant Branch AirLoop F7 S2, !-
- WLHP Heating Plant Branch AirLoop F7 S2, !-
- WLHP Cooling Plant Branch AirLoop F8 SW, !-
- WLHP Heating Plant Branch AirLoop F8 SW, !-
- WLHP Cooling Plant Branch AirLoop F8 NW, !-
- WLHP Heating Plant Branch AirLoop F8 NW, !-
- WLHP Cooling Plant Branch AirLoop F8 SE, !-
- WLHP Heating Plant Branch AirLoop F8 SE, !-
- WLHP Cooling Plant Branch AirLoop F8 NE, !-
- WLHP Heating Plant Branch AirLoop F8 NE, !-
- WLHP Cooling Plant Branch AirLoop F8 N1, !-
- WLHP Heating Plant Branch AirLoop F8 N1, !-
- WLHP Cooling Plant Branch AirLoop F8 N2, !-
- WLHP Heating Plant Branch AirLoop F8 N2, !-
- WLHP Cooling Plant Branch AirLoop F8 S1, !-
- WLHP Heating Plant Branch AirLoop F8 S1, !-
- WLHP Cooling Plant Branch AirLoop F8 S2, !-
- WLHP Heating Plant Branch AirLoop F8 S2, !-
- WLHP Cooling Plant Branch AirLoop F9 SW, !-
- WLHP Heating Plant Branch AirLoop F9 SW, !-
- WLHP Cooling Plant Branch AirLoop F9 NW, !-
- WLHP Heating Plant Branch AirLoop F9 NW, !-
- WLHP Cooling Plant Branch AirLoop F9 SE, !-
- WLHP Heating Plant Branch AirLoop F9 SE, !-
- WLHP Cooling Plant Branch AirLoop F9 NE, !-
- WLHP Heating Plant Branch AirLoop F9 NE, !-
- WLHP Cooling Plant Branch AirLoop F9 N1, !-
- WLHP Heating Plant Branch AirLoop F9 N1, !-
- WLHP Cooling Plant Branch AirLoop F9 N2, !-
- WLHP Heating Plant Branch AirLoop F9 N2, !-
- WLHP Cooling Plant Branch AirLoop F9 S1, !-
- WLHP Heating Plant Branch AirLoop F9 S1, !-
- WLHP Cooling Plant Branch AirLoop F9 S2, !-
- WLHP Heating Plant Branch AirLoop F9 S2, !-
- WLHP Cooling Plant Branch AirLoop T SW, !-
- WLHP Heating Plant Branch AirLoop T SW, !-
- WLHP Cooling Plant Branch AirLoop T NW, !-
- WLHP Heating Plant Branch AirLoop T NW, !-
- WLHP Cooling Plant Branch AirLoop T SE, !-
- WLHP Heating Plant Branch AirLoop T SE, !-
- WLHP Cooling Plant Branch AirLoop T NE, !-
- WLHP Heating Plant Branch AirLoop T NE, !-
- WLHP Cooling Plant Branch AirLoop T N1, !-
- WLHP Heating Plant Branch AirLoop T N1, !-
- WLHP Cooling Plant Branch AirLoop T N2, !-
- WLHP Heating Plant Branch AirLoop T N2, !-
- WLHP Cooling Plant Branch AirLoop T S1, !-
- WLHP Heating Plant Branch AirLoop T S1, !-
- WLHP Cooling Plant Branch AirLoop T S2, !-
- WLHP Heating Plant Branch AirLoop T S2, !-
- Plant Demand Bypass Branch; !-
-
-!- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER ===========
-
- Connector:Mixer,
- SHWSys1 Supply Mixer, !- Name
- SHWSys1 Supply Outlet Branch, !- Outlet Branch Name
- SHWSys1 Supply Equipment Branch, !- Inlet Branch 1 Name
- SHWSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name
-
- Connector:Mixer,
- SHWSys1 Demand Mixer, !- Name
- SHWSys1 Demand Outlet Branch, !- Outlet Branch Name
- SHWSys1 Demand Load Branch 1, !- Inlet Branch 1 Name
- SHWSys1 Demand Load Branch 2, !- Inlet Branch 2 Name
- SHWSys1 Demand Load Branch 3, !- Inlet Branch 3 Name
- SHWSys1 Demand Load Branch 4, !- Inlet Branch 4 Name
- SHWSys1 Demand Load Branch 5, !- Inlet Branch 5 Name
- SHWSys1 Demand Load Branch 6, !- Inlet Branch 6 Name
- SHWSys1 Demand Load Branch 7, !- Inlet Branch 7 Name
- SHWSys1 Demand Load Branch 8, !- Inlet Branch 8 Name
- SHWSys1 Demand Load Branch 9, !- Inlet Branch 9 Name
- SHWSys1 Demand Load Branch 10, !- Inlet Branch 10 Name
- SHWSys1 Demand Load Branch 11, !- Inlet Branch 11 Name
- SHWSys1 Demand Load Branch 12, !- Inlet Branch 12 Name
- SHWSys1 Demand Load Branch 13, !- Inlet Branch 13 Name
- SHWSys1 Demand Load Branch 14, !- Inlet Branch 14 Name
- SHWSys1 Demand Load Branch 15, !- Inlet Branch 15 Name
- SHWSys1 Demand Load Branch 16, !- Inlet Branch 16 Name
- SHWSys1 Demand Load Branch 17, !- Inlet Branch 17 Name
- SHWSys1 Demand Load Branch 18, !- Inlet Branch 18 Name
- SHWSys1 Demand Load Branch 19, !- Inlet Branch 19 Name
- SHWSys1 Demand Load Branch 20, !- Inlet Branch 20 Name
- SHWSys1 Demand Load Branch 21, !- Inlet Branch 21 Name
- SHWSys1 Demand Load Branch 22, !- Inlet Branch 22 Name
- SHWSys1 Demand Load Branch 23, !- Inlet Branch 23 Name
- SHWSys1 Demand Load Branch 24, !- Inlet Branch 24 Name
- SHWSys1 Demand Load Branch 25, !- Inlet Branch 25 Name
- SHWSys1 Demand Load Branch 26, !- Inlet Branch 26 Name
- SHWSys1 Demand Load Branch 27, !- Inlet Branch 27 Name
- SHWSys1 Demand Load Branch 28, !- Inlet Branch 28 Name
- SHWSys1 Demand Load Branch 29, !- Inlet Branch 29 Name
- SHWSys1 Demand Load Branch 30, !- Inlet Branch 30 Name
- SHWSys1 Demand Load Branch 31, !- Inlet Branch 31 Name
- SHWSys1 Demand Load Branch 32, !- Inlet Branch 32 Name
- SHWSys1 Demand Load Branch 33, !- Inlet Branch 33 Name
- SHWSys1 Demand Load Branch 34, !- Inlet Branch 34 Name
- SHWSys1 Demand Load Branch 35, !- Inlet Branch 35 Name
- SHWSys1 Demand Load Branch 36, !- Inlet Branch 36 Name
- SHWSys1 Demand Load Branch 37, !- Inlet Branch 37 Name
- SHWSys1 Demand Load Branch 38, !- Inlet Branch 38 Name
- SHWSys1 Demand Load Branch 39, !- Inlet Branch 39 Name
- SHWSys1 Demand Load Branch 40, !- Inlet Branch 40 Name
- SHWSys1 Demand Load Branch 41, !- Inlet Branch 41 Name
- SHWSys1 Demand Load Branch 42, !- Inlet Branch 42 Name
- SHWSys1 Demand Load Branch 43, !- Inlet Branch 43 Name
- SHWSys1 Demand Load Branch 44, !- Inlet Branch 44 Name
- SHWSys1 Demand Load Branch 45, !- Inlet Branch 45 Name
- SHWSys1 Demand Load Branch 46, !- Inlet Branch 46 Name
- SHWSys1 Demand Load Branch 47, !- Inlet Branch 47 Name
- SHWSys1 Demand Load Branch 48, !- Inlet Branch 48 Name
- SHWSys1 Demand Load Branch 49, !- Inlet Branch 49 Name
- SHWSys1 Demand Load Branch 50, !- Inlet Branch 50 Name
- SHWSys1 Demand Load Branch 51, !- Inlet Branch 51 Name
- SHWSys1 Demand Load Branch 52, !- Inlet Branch 52 Name
- SHWSys1 Demand Load Branch 53, !- Inlet Branch 53 Name
- SHWSys1 Demand Load Branch 54, !- Inlet Branch 54 Name
- SHWSys1 Demand Load Branch 55, !- Inlet Branch 55 Name
- SHWSys1 Demand Load Branch 56, !- Inlet Branch 56 Name
- SHWSys1 Demand Load Branch 57, !- Inlet Branch 57 Name
- SHWSys1 Demand Load Branch 58, !- Inlet Branch 58 Name
- SHWSys1 Demand Load Branch 59, !- Inlet Branch 59 Name
- SHWSys1 Demand Load Branch 60, !- Inlet Branch 60 Name
- SHWSys1 Demand Load Branch 61, !- Inlet Branch 61 Name
- SHWSys1 Demand Load Branch 62, !- Inlet Branch 62 Name
- SHWSys1 Demand Load Branch 63, !- Inlet Branch 63 Name
- SHWSys1 Demand Load Branch 64, !- Inlet Branch 64 Name
- SHWSys1 Demand Load Branch 65, !- Inlet Branch 65 Name
- SHWSys1 Demand Load Branch 66, !- Inlet Branch 66 Name
- SHWSys1 Demand Load Branch 67, !- Inlet Branch 67 Name
- SHWSys1 Demand Load Branch 68, !- Inlet Branch 68 Name
- SHWSys1 Demand Load Branch 69, !- Inlet Branch 69 Name
- SHWSys1 Demand Load Branch 70, !- Inlet Branch 70 Name
- SHWSys1 Demand Load Branch 71, !- Inlet Branch 71 Name
- SHWSys1 Demand Load Branch 72, !- Inlet Branch 72 Name
- SHWSys1 Demand Load Branch 73, !- Inlet Branch 73 Name
- SHWSys1 Demand Load Branch 74, !- Inlet Branch 74 Name
- SHWSys1 Demand Load Branch 75, !- Inlet Branch 75 Name
- SHWSys1 Demand Load Branch 76, !- Inlet Branch 76 Name
- SHWSys1 Demand Load Branch 77, !- Inlet Branch 77 Name
- SHWSys1 Demand Load Branch 78, !- Inlet Branch 78 Name
- SHWSys1 Demand Load Branch 79, !- Inlet Branch 79 Name
- SHWSys1 Demand Bypass Branch; !- Inlet Branch 80 Name
-
- Connector:Mixer,
- Plant Supply Mixer, !- Name
- Plant Supply Outlet Branch, !- Outlet Branch Name
- Plant Supply Tower Branch, !- Inlet Branch 1 Name
- Central Boiler Branch, !- Inlet Branch 2 Name
- Plant Supply Bypass Branch; !- Inlet Branch 3 Name
-
- Connector:Mixer,
- Plant Demand Mixer, !- Name
- Plant Demand Outlet Branch, !- Outlet Branch Name
- WLHP Cooling Plant Branch AirLoop G SW, !- Inlet Branch 1 Name
- WLHP Heating Plant Branch AirLoop G SW, !- Inlet Branch 2 Name
- WLHP Cooling Plant Branch AirLoop G NW, !- Inlet Branch 3 Name
- WLHP Heating Plant Branch AirLoop G NW, !- Inlet Branch 4 Name
- WLHP Cooling Plant Branch AirLoop Office, !- Inlet Branch 5 Name
- WLHP Heating Plant Branch AirLoop Office, !- Inlet Branch 6 Name
- WLHP Cooling Plant Branch AirLoop G NE, !- Inlet Branch 7 Name
- WLHP Heating Plant Branch AirLoop G NE, !- Inlet Branch 8 Name
- WLHP Cooling Plant Branch AirLoop G N1, !- Inlet Branch 9 Name
- WLHP Heating Plant Branch AirLoop G N1, !- Inlet Branch 10 Name
- WLHP Cooling Plant Branch AirLoop G N2, !- Inlet Branch 11 Name
- WLHP Heating Plant Branch AirLoop G N2, !- Inlet Branch 12 Name
- WLHP Cooling Plant Branch AirLoop G S1, !- Inlet Branch 13 Name
- WLHP Heating Plant Branch AirLoop G S1, !- Inlet Branch 14 Name
- WLHP Cooling Plant Branch AirLoop G S2, !- Inlet Branch 15 Name
- WLHP Heating Plant Branch AirLoop G S2, !- Inlet Branch 16 Name
- WLHP Cooling Plant Branch AirLoop F2 SW, !- Inlet Branch 17 Name
- WLHP Heating Plant Branch AirLoop F2 SW, !- Inlet Branch 18 Name
- WLHP Cooling Plant Branch AirLoop F2 NW, !- Inlet Branch 19 Name
- WLHP Heating Plant Branch AirLoop F2 NW, !- Inlet Branch 20 Name
- WLHP Cooling Plant Branch AirLoop F2 SE, !- Inlet Branch 21 Name
- WLHP Heating Plant Branch AirLoop F2 SE, !- Inlet Branch 22 Name
- WLHP Cooling Plant Branch AirLoop F2 NE, !- Inlet Branch 23 Name
- WLHP Heating Plant Branch AirLoop F2 NE, !- Inlet Branch 24 Name
- WLHP Cooling Plant Branch AirLoop F2 N1, !- Inlet Branch 25 Name
- WLHP Heating Plant Branch AirLoop F2 N1, !- Inlet Branch 26 Name
- WLHP Cooling Plant Branch AirLoop F2 N2, !- Inlet Branch 27 Name
- WLHP Heating Plant Branch AirLoop F2 N2, !- Inlet Branch 28 Name
- WLHP Cooling Plant Branch AirLoop F2 S1, !- Inlet Branch 29 Name
- WLHP Heating Plant Branch AirLoop F2 S1, !- Inlet Branch 30 Name
- WLHP Cooling Plant Branch AirLoop F2 S2, !- Inlet Branch 31 Name
- WLHP Heating Plant Branch AirLoop F2 S2, !- Inlet Branch 32 Name
- WLHP Cooling Plant Branch AirLoop F3 SW, !- Inlet Branch 33 Name
- WLHP Heating Plant Branch AirLoop F3 SW, !- Inlet Branch 34 Name
- WLHP Cooling Plant Branch AirLoop F3 NW, !- Inlet Branch 35 Name
- WLHP Heating Plant Branch AirLoop F3 NW, !- Inlet Branch 36 Name
- WLHP Cooling Plant Branch AirLoop F3 SE, !- Inlet Branch 37 Name
- WLHP Heating Plant Branch AirLoop F3 SE, !- Inlet Branch 38 Name
- WLHP Cooling Plant Branch AirLoop F3 NE, !- Inlet Branch 39 Name
- WLHP Heating Plant Branch AirLoop F3 NE, !- Inlet Branch 40 Name
- WLHP Cooling Plant Branch AirLoop F3 N1, !- Inlet Branch 41 Name
- WLHP Heating Plant Branch AirLoop F3 N1, !- Inlet Branch 42 Name
- WLHP Cooling Plant Branch AirLoop F3 N2, !- Inlet Branch 43 Name
- WLHP Heating Plant Branch AirLoop F3 N2, !- Inlet Branch 44 Name
- WLHP Cooling Plant Branch AirLoop F3 S1, !- Inlet Branch 45 Name
- WLHP Heating Plant Branch AirLoop F3 S1, !- Inlet Branch 46 Name
- WLHP Cooling Plant Branch AirLoop F3 S2, !- Inlet Branch 47 Name
- WLHP Heating Plant Branch AirLoop F3 S2, !- Inlet Branch 48 Name
- WLHP Cooling Plant Branch AirLoop F4 SW, !- Inlet Branch 49 Name
- WLHP Heating Plant Branch AirLoop F4 SW, !- Inlet Branch 50 Name
- WLHP Cooling Plant Branch AirLoop F4 NW, !- Inlet Branch 51 Name
- WLHP Heating Plant Branch AirLoop F4 NW, !- Inlet Branch 52 Name
- WLHP Cooling Plant Branch AirLoop F4 SE, !- Inlet Branch 53 Name
- WLHP Heating Plant Branch AirLoop F4 SE, !- Inlet Branch 54 Name
- WLHP Cooling Plant Branch AirLoop F4 NE, !- Inlet Branch 55 Name
- WLHP Heating Plant Branch AirLoop F4 NE, !- Inlet Branch 56 Name
- WLHP Cooling Plant Branch AirLoop F4 N1, !- Inlet Branch 57 Name
- WLHP Heating Plant Branch AirLoop F4 N1, !- Inlet Branch 58 Name
- WLHP Cooling Plant Branch AirLoop F4 N2, !- Inlet Branch 59 Name
- WLHP Heating Plant Branch AirLoop F4 N2, !- Inlet Branch 60 Name
- WLHP Cooling Plant Branch AirLoop F4 S1, !- Inlet Branch 61 Name
- WLHP Heating Plant Branch AirLoop F4 S1, !- Inlet Branch 62 Name
- WLHP Cooling Plant Branch AirLoop F4 S2, !- Inlet Branch 63 Name
- WLHP Heating Plant Branch AirLoop F4 S2, !- Inlet Branch 64 Name
- WLHP Cooling Plant Branch AirLoop M SW, !- Inlet Branch 65 Name
- WLHP Heating Plant Branch AirLoop M SW, !- Inlet Branch 66 Name
- WLHP Cooling Plant Branch AirLoop M NW, !- Inlet Branch 67 Name
- WLHP Heating Plant Branch AirLoop M NW, !- Inlet Branch 68 Name
- WLHP Cooling Plant Branch AirLoop M SE, !- Inlet Branch 69 Name
- WLHP Heating Plant Branch AirLoop M SE, !- Inlet Branch 70 Name
- WLHP Cooling Plant Branch AirLoop M NE, !- Inlet Branch 71 Name
- WLHP Heating Plant Branch AirLoop M NE, !- Inlet Branch 72 Name
- WLHP Cooling Plant Branch AirLoop M N1, !- Inlet Branch 73 Name
- WLHP Heating Plant Branch AirLoop M N1, !- Inlet Branch 74 Name
- WLHP Cooling Plant Branch AirLoop M N2, !- Inlet Branch 75 Name
- WLHP Heating Plant Branch AirLoop M N2, !- Inlet Branch 76 Name
- WLHP Cooling Plant Branch AirLoop M S1, !- Inlet Branch 77 Name
- WLHP Heating Plant Branch AirLoop M S1, !- Inlet Branch 78 Name
- WLHP Cooling Plant Branch AirLoop M S2, !- Inlet Branch 79 Name
- WLHP Heating Plant Branch AirLoop M S2, !- Inlet Branch 80 Name
- WLHP Cooling Plant Branch AirLoop F6 SW, !- Inlet Branch 81 Name
- WLHP Heating Plant Branch AirLoop F6 SW, !- Inlet Branch 82 Name
- WLHP Cooling Plant Branch AirLoop F6 NW, !- Inlet Branch 83 Name
- WLHP Heating Plant Branch AirLoop F6 NW, !- Inlet Branch 84 Name
- WLHP Cooling Plant Branch AirLoop F6 SE, !- Inlet Branch 85 Name
- WLHP Heating Plant Branch AirLoop F6 SE, !- Inlet Branch 86 Name
- WLHP Cooling Plant Branch AirLoop F6 NE, !- Inlet Branch 87 Name
- WLHP Heating Plant Branch AirLoop F6 NE, !- Inlet Branch 88 Name
- WLHP Cooling Plant Branch AirLoop F6 N1, !- Inlet Branch 89 Name
- WLHP Heating Plant Branch AirLoop F6 N1, !- Inlet Branch 90 Name
- WLHP Cooling Plant Branch AirLoop F6 N2, !- Inlet Branch 91 Name
- WLHP Heating Plant Branch AirLoop F6 N2, !- Inlet Branch 92 Name
- WLHP Cooling Plant Branch AirLoop F6 S1, !- Inlet Branch 93 Name
- WLHP Heating Plant Branch AirLoop F6 S1, !- Inlet Branch 94 Name
- WLHP Cooling Plant Branch AirLoop F6 S2, !- Inlet Branch 95 Name
- WLHP Heating Plant Branch AirLoop F6 S2, !- Inlet Branch 96 Name
- WLHP Cooling Plant Branch AirLoop F7 SW, !- Inlet Branch 97 Name
- WLHP Heating Plant Branch AirLoop F7 SW, !- Inlet Branch 98 Name
- WLHP Cooling Plant Branch AirLoop F7 NW, !- Inlet Branch 99 Name
- WLHP Heating Plant Branch AirLoop F7 NW, !- Inlet Branch 100 Name
- WLHP Cooling Plant Branch AirLoop F7 SE, !-
- WLHP Heating Plant Branch AirLoop F7 SE, !-
- WLHP Cooling Plant Branch AirLoop F7 NE, !-
- WLHP Heating Plant Branch AirLoop F7 NE, !-
- WLHP Cooling Plant Branch AirLoop F7 N1, !-
- WLHP Heating Plant Branch AirLoop F7 N1, !-
- WLHP Cooling Plant Branch AirLoop F7 N2, !-
- WLHP Heating Plant Branch AirLoop F7 N2, !-
- WLHP Cooling Plant Branch AirLoop F7 S1, !-
- WLHP Heating Plant Branch AirLoop F7 S1, !-
- WLHP Cooling Plant Branch AirLoop F7 S2, !-
- WLHP Heating Plant Branch AirLoop F7 S2, !-
- WLHP Cooling Plant Branch AirLoop F8 SW, !-
- WLHP Heating Plant Branch AirLoop F8 SW, !-
- WLHP Cooling Plant Branch AirLoop F8 NW, !-
- WLHP Heating Plant Branch AirLoop F8 NW, !-
- WLHP Cooling Plant Branch AirLoop F8 SE, !-
- WLHP Heating Plant Branch AirLoop F8 SE, !-
- WLHP Cooling Plant Branch AirLoop F8 NE, !-
- WLHP Heating Plant Branch AirLoop F8 NE, !-
- WLHP Cooling Plant Branch AirLoop F8 N1, !-
- WLHP Heating Plant Branch AirLoop F8 N1, !-
- WLHP Cooling Plant Branch AirLoop F8 N2, !-
- WLHP Heating Plant Branch AirLoop F8 N2, !-
- WLHP Cooling Plant Branch AirLoop F8 S1, !-
- WLHP Heating Plant Branch AirLoop F8 S1, !-
- WLHP Cooling Plant Branch AirLoop F8 S2, !-
- WLHP Heating Plant Branch AirLoop F8 S2, !-
- WLHP Cooling Plant Branch AirLoop F9 SW, !-
- WLHP Heating Plant Branch AirLoop F9 SW, !-
- WLHP Cooling Plant Branch AirLoop F9 NW, !-
- WLHP Heating Plant Branch AirLoop F9 NW, !-
- WLHP Cooling Plant Branch AirLoop F9 SE, !-
- WLHP Heating Plant Branch AirLoop F9 SE, !-
- WLHP Cooling Plant Branch AirLoop F9 NE, !-
- WLHP Heating Plant Branch AirLoop F9 NE, !-
- WLHP Cooling Plant Branch AirLoop F9 N1, !-
- WLHP Heating Plant Branch AirLoop F9 N1, !-
- WLHP Cooling Plant Branch AirLoop F9 N2, !-
- WLHP Heating Plant Branch AirLoop F9 N2, !-
- WLHP Cooling Plant Branch AirLoop F9 S1, !-
- WLHP Heating Plant Branch AirLoop F9 S1, !-
- WLHP Cooling Plant Branch AirLoop F9 S2, !-
- WLHP Heating Plant Branch AirLoop F9 S2, !-
- WLHP Cooling Plant Branch AirLoop T SW, !-
- WLHP Heating Plant Branch AirLoop T SW, !-
- WLHP Cooling Plant Branch AirLoop T NW, !-
- WLHP Heating Plant Branch AirLoop T NW, !-
- WLHP Cooling Plant Branch AirLoop T SE, !-
- WLHP Heating Plant Branch AirLoop T SE, !-
- WLHP Cooling Plant Branch AirLoop T NE, !-
- WLHP Heating Plant Branch AirLoop T NE, !-
- WLHP Cooling Plant Branch AirLoop T N1, !-
- WLHP Heating Plant Branch AirLoop T N1, !-
- WLHP Cooling Plant Branch AirLoop T N2, !-
- WLHP Heating Plant Branch AirLoop T N2, !-
- WLHP Cooling Plant Branch AirLoop T S1, !-
- WLHP Heating Plant Branch AirLoop T S1, !-
- WLHP Cooling Plant Branch AirLoop T S2, !-
- WLHP Heating Plant Branch AirLoop T S2, !-
- Plant Demand Bypass Branch; !-
-
-!- =========== ALL OBJECTS IN CLASS: CONNECTORLIST ===========
-
- ConnectorList,
- SHWSys1 Supply Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- SHWSys1 Supply Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- SHWSys1 Supply Mixer; !- Connector 2 Name
-
- ConnectorList,
- SHWSys1 Demand Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- SHWSys1 Demand Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- SHWSys1 Demand Mixer; !- Connector 2 Name
-
- ConnectorList,
- Plant Supply Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- Plant Supply Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- Plant Supply Mixer; !- Connector 2 Name
-
- ConnectorList,
- Plant Demand Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- Plant Demand Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- Plant Demand Mixer; !- Connector 2 Name
-
-!- =========== ALL OBJECTS IN CLASS: NODELIST ===========
-
-NodeList,
- G SW Apartment Inlets, !- Node List Name
- G SW Apartment Supply Inlet, !- Node_ID_1
- G SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- G NW Apartment Inlets, !- Node List Name
- G NW Apartment Supply Inlet, !- Node_ID_1
- G NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- NodeList,
- Office Inlets, !- Name
- Office Supply Inlet; !- Node 1 Name
-
-NodeList,
- G NE Apartment Inlets, !- Node List Name
- G NE Apartment Supply Inlet, !- Node_ID_1
- G NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- G N1 Apartment Inlets, !- Node List Name
- G N1 Apartment Supply Inlet, !- Node_ID_1
- G N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- G N2 Apartment Inlets, !- Node List Name
- G N2 Apartment Supply Inlet, !- Node_ID_1
- G N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- G S1 Apartment Inlets, !- Node List Name
- G S1 Apartment Supply Inlet, !- Node_ID_1
- G S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- G S2 Apartment Inlets, !- Node List Name
- G S2 Apartment Supply Inlet, !- Node_ID_1
- G S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 SW Apartment Inlets, !- Node List Name
- F2 SW Apartment Supply Inlet, !- Node_ID_1
- F2 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 NW Apartment Inlets, !- Node List Name
- F2 NW Apartment Supply Inlet, !- Node_ID_1
- F2 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 SE Apartment Inlets, !- Node List Name
- F2 SE Apartment Supply Inlet, !- Node_ID_1
- F2 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 NE Apartment Inlets, !- Node List Name
- F2 NE Apartment Supply Inlet, !- Node_ID_1
- F2 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 N1 Apartment Inlets, !- Node List Name
- F2 N1 Apartment Supply Inlet, !- Node_ID_1
- F2 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 N2 Apartment Inlets, !- Node List Name
- F2 N2 Apartment Supply Inlet, !- Node_ID_1
- F2 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 S1 Apartment Inlets, !- Node List Name
- F2 S1 Apartment Supply Inlet, !- Node_ID_1
- F2 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F2 S2 Apartment Inlets, !- Node List Name
- F2 S2 Apartment Supply Inlet, !- Node_ID_1
- F2 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 SW Apartment Inlets, !- Node List Name
- F3 SW Apartment Supply Inlet, !- Node_ID_1
- F3 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 NW Apartment Inlets, !- Node List Name
- F3 NW Apartment Supply Inlet, !- Node_ID_1
- F3 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 SE Apartment Inlets, !- Node List Name
- F3 SE Apartment Supply Inlet, !- Node_ID_1
- F3 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 NE Apartment Inlets, !- Node List Name
- F3 NE Apartment Supply Inlet, !- Node_ID_1
- F3 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 N1 Apartment Inlets, !- Node List Name
- F3 N1 Apartment Supply Inlet, !- Node_ID_1
- F3 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 N2 Apartment Inlets, !- Node List Name
- F3 N2 Apartment Supply Inlet, !- Node_ID_1
- F3 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 S1 Apartment Inlets, !- Node List Name
- F3 S1 Apartment Supply Inlet, !- Node_ID_1
- F3 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F3 S2 Apartment Inlets, !- Node List Name
- F3 S2 Apartment Supply Inlet, !- Node_ID_1
- F3 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 SW Apartment Inlets, !- Node List Name
- F4 SW Apartment Supply Inlet, !- Node_ID_1
- F4 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 NW Apartment Inlets, !- Node List Name
- F4 NW Apartment Supply Inlet, !- Node_ID_1
- F4 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 SE Apartment Inlets, !- Node List Name
- F4 SE Apartment Supply Inlet, !- Node_ID_1
- F4 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 NE Apartment Inlets, !- Node List Name
- F4 NE Apartment Supply Inlet, !- Node_ID_1
- F4 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 N1 Apartment Inlets, !- Node List Name
- F4 N1 Apartment Supply Inlet, !- Node_ID_1
- F4 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 N2 Apartment Inlets, !- Node List Name
- F4 N2 Apartment Supply Inlet, !- Node_ID_1
- F4 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 S1 Apartment Inlets, !- Node List Name
- F4 S1 Apartment Supply Inlet, !- Node_ID_1
- F4 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F4 S2 Apartment Inlets, !- Node List Name
- F4 S2 Apartment Supply Inlet, !- Node_ID_1
- F4 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M SW Apartment Inlets, !- Node List Name
- M SW Apartment Supply Inlet, !- Node_ID_1
- M SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M NW Apartment Inlets, !- Node List Name
- M NW Apartment Supply Inlet, !- Node_ID_1
- M NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M SE Apartment Inlets, !- Node List Name
- M SE Apartment Supply Inlet, !- Node_ID_1
- M SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M NE Apartment Inlets, !- Node List Name
- M NE Apartment Supply Inlet, !- Node_ID_1
- M NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M N1 Apartment Inlets, !- Node List Name
- M N1 Apartment Supply Inlet, !- Node_ID_1
- M N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M N2 Apartment Inlets, !- Node List Name
- M N2 Apartment Supply Inlet, !- Node_ID_1
- M N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M S1 Apartment Inlets, !- Node List Name
- M S1 Apartment Supply Inlet, !- Node_ID_1
- M S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- M S2 Apartment Inlets, !- Node List Name
- M S2 Apartment Supply Inlet, !- Node_ID_1
- M S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 SW Apartment Inlets, !- Node List Name
- F6 SW Apartment Supply Inlet, !- Node_ID_1
- F6 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 NW Apartment Inlets, !- Node List Name
- F6 NW Apartment Supply Inlet, !- Node_ID_1
- F6 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 SE Apartment Inlets, !- Node List Name
- F6 SE Apartment Supply Inlet, !- Node_ID_1
- F6 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 NE Apartment Inlets, !- Node List Name
- F6 NE Apartment Supply Inlet, !- Node_ID_1
- F6 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 N1 Apartment Inlets, !- Node List Name
- F6 N1 Apartment Supply Inlet, !- Node_ID_1
- F6 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 N2 Apartment Inlets, !- Node List Name
- F6 N2 Apartment Supply Inlet, !- Node_ID_1
- F6 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 S1 Apartment Inlets, !- Node List Name
- F6 S1 Apartment Supply Inlet, !- Node_ID_1
- F6 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F6 S2 Apartment Inlets, !- Node List Name
- F6 S2 Apartment Supply Inlet, !- Node_ID_1
- F6 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 SW Apartment Inlets, !- Node List Name
- F7 SW Apartment Supply Inlet, !- Node_ID_1
- F7 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 NW Apartment Inlets, !- Node List Name
- F7 NW Apartment Supply Inlet, !- Node_ID_1
- F7 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 SE Apartment Inlets, !- Node List Name
- F7 SE Apartment Supply Inlet, !- Node_ID_1
- F7 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 NE Apartment Inlets, !- Node List Name
- F7 NE Apartment Supply Inlet, !- Node_ID_1
- F7 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 N1 Apartment Inlets, !- Node List Name
- F7 N1 Apartment Supply Inlet, !- Node_ID_1
- F7 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 N2 Apartment Inlets, !- Node List Name
- F7 N2 Apartment Supply Inlet, !- Node_ID_1
- F7 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 S1 Apartment Inlets, !- Node List Name
- F7 S1 Apartment Supply Inlet, !- Node_ID_1
- F7 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F7 S2 Apartment Inlets, !- Node List Name
- F7 S2 Apartment Supply Inlet, !- Node_ID_1
- F7 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 SW Apartment Inlets, !- Node List Name
- F8 SW Apartment Supply Inlet, !- Node_ID_1
- F8 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 NW Apartment Inlets, !- Node List Name
- F8 NW Apartment Supply Inlet, !- Node_ID_1
- F8 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 SE Apartment Inlets, !- Node List Name
- F8 SE Apartment Supply Inlet, !- Node_ID_1
- F8 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 NE Apartment Inlets, !- Node List Name
- F8 NE Apartment Supply Inlet, !- Node_ID_1
- F8 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 N1 Apartment Inlets, !- Node List Name
- F8 N1 Apartment Supply Inlet, !- Node_ID_1
- F8 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 N2 Apartment Inlets, !- Node List Name
- F8 N2 Apartment Supply Inlet, !- Node_ID_1
- F8 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 S1 Apartment Inlets, !- Node List Name
- F8 S1 Apartment Supply Inlet, !- Node_ID_1
- F8 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F8 S2 Apartment Inlets, !- Node List Name
- F8 S2 Apartment Supply Inlet, !- Node_ID_1
- F8 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 SW Apartment Inlets, !- Node List Name
- F9 SW Apartment Supply Inlet, !- Node_ID_1
- F9 SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 NW Apartment Inlets, !- Node List Name
- F9 NW Apartment Supply Inlet, !- Node_ID_1
- F9 NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 SE Apartment Inlets, !- Node List Name
- F9 SE Apartment Supply Inlet, !- Node_ID_1
- F9 SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 NE Apartment Inlets, !- Node List Name
- F9 NE Apartment Supply Inlet, !- Node_ID_1
- F9 NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 N1 Apartment Inlets, !- Node List Name
- F9 N1 Apartment Supply Inlet, !- Node_ID_1
- F9 N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 N2 Apartment Inlets, !- Node List Name
- F9 N2 Apartment Supply Inlet, !- Node_ID_1
- F9 N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 S1 Apartment Inlets, !- Node List Name
- F9 S1 Apartment Supply Inlet, !- Node_ID_1
- F9 S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- F9 S2 Apartment Inlets, !- Node List Name
- F9 S2 Apartment Supply Inlet, !- Node_ID_1
- F9 S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T SW Apartment Inlets, !- Node List Name
- T SW Apartment Supply Inlet, !- Node_ID_1
- T SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T NW Apartment Inlets, !- Node List Name
- T NW Apartment Supply Inlet, !- Node_ID_1
- T NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T SE Apartment Inlets, !- Node List Name
- T SE Apartment Supply Inlet, !- Node_ID_1
- T SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T NE Apartment Inlets, !- Node List Name
- T NE Apartment Supply Inlet, !- Node_ID_1
- T NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T N1 Apartment Inlets, !- Node List Name
- T N1 Apartment Supply Inlet, !- Node_ID_1
- T N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T N2 Apartment Inlets, !- Node List Name
- T N2 Apartment Supply Inlet, !- Node_ID_1
- T N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T S1 Apartment Inlets, !- Node List Name
- T S1 Apartment Supply Inlet, !- Node_ID_1
- T S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-NodeList,
- T S2 Apartment Inlets, !- Node List Name
- T S2 Apartment Supply Inlet, !- Node_ID_1
- T S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODE ===========
-
- OutdoorAir:Node,
- Central Chiller Condenser Inlet Node, !- Name
- -1.0; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Common OSA Inlet Node, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- G SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- G NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- Office Outside Air Inlet;!- Name
-
- OutdoorAir:Node,
- G NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- G N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- G N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- G S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- G S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F2 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F3 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F4 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- M S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F6 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F7 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F8 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- F9 S2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T SW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T NW Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T SE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T NE Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T N1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T N2 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T S1 Apartment Outside Air Inlet; !- Name
-
- OutdoorAir:Node,
- T S2 Apartment Outside Air Inlet; !- Name
-
-!- =========== ALL OBJECTS IN CLASS: PUMP:CONSTANTSPEED ===========
-
- Pump:ConstantSpeed,
- SHWSys1 Pump, !- Name
- SHWSys1 Supply Inlet Node, !- Inlet Node Name
- SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector, !- Outlet Node Name
- autosize, !- Design Flow Rate {m3/s}
- 29891, !- Design Pump Head {Pa}
- AUTOSIZE, !- Design Power Consumption {W}
- 0.30, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- Intermittent; !- Pump Control Type
-
- Pump:ConstantSpeed,
- Plant Circ Pump, !- Name
- Plant Supply Inlet Node, !- Inlet Node Name
- Plant Pump Outlet Node, !- Outlet Node Name
- autosize, !- Design Flow Rate {m3/s}
- 179045.1073, !- Design Pump Head {Pa}
- autosize, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- Intermittent; !- Pump Control Type
-
-!- =========== ALL OBJECTS IN CLASS: BOILER:HOTWATER ===========
-
- Boiler:HotWater,
- Central Boiler, !- Name
- NaturalGas, !- Fuel Type
-258612.11, !- Nominal Capacity {W}
-0.8, !- Nominal Thermal Efficiency
- LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable
- Central Boiler Efficiency Curve, !- Normalized Boiler Efficiency Curve Name
- autosize, !- Design Water Flow Rate {m3/s}
- 0.0, !- Minimum Part Load Ratio
- 1.2, !- Maximum Part Load Ratio
- 1.0, !- Optimum Part Load Ratio
- Central Boiler Inlet Node, !- Boiler Water Inlet Node Name
- Central Boiler Outlet Node, !- Boiler Water Outlet Node Name
- 95, !- Water Outlet Upper Temperature Limit {C}
- ConstantFlow; !- Boiler Flow Mode
-
-!- =========== ALL OBJECTS IN CLASS: EVAPORATIVEFLUIDCOOLER:SINGLESPEED ===========
-
- EvaporativeFluidCooler:TwoSpeed,
- Central Tower, !- Name
- Central Tower Inlet Node,!- Water Inlet Node Name
- Central Tower Outlet Node, !- Water Outlet Node Name
- autosize, !- High Fan Speed Air Flow Rate {m3/s}
- autosize, !- High Fan Speed Fan Power {W}
- autocalculate, !- Low Fan Speed Air Flow Rate {m3/s}
- , !- Low Fan Speed Air Flow Rate Sizing Factor
- autocalculate, !- Low Fan Speed Fan Power {W}
- , !- Low Fan Speed Fan Power Sizing Factor
- 0.002208, !- Design Spray Water Flow Rate {m3/s}
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- , !- Outdoor Air Inlet Node Name
- 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio
- , !- High Speed Standard Design Capacity {W}
- , !- Low Speed Standard Design Capacity {W}
- 0.5, !- Low Speed Standard Capacity Sizing Factor
- autosize, !- High Fan Speed U-factor Times Area Value {W/K}
- autocalculate, !- Low Fan Speed U-factor Times Area Value {W/K}
- 0.6, !- Low Fan Speed U-Factor Times Area Sizing Factor
- autosize, !- Design Water Flow Rate {m3/s}
- , !- High Speed User Specified Design Capacity {W}
- , !- Low Speed User Specified Design Capacity {W}
- 0.5, !- Low Speed User Specified Design Capacity Sizing Factor
- , !- Design Entering Water Temperature {C}
- , !- Design Entering Air Temperature {C}
- , !- Design Entering Air Wet-bulb Temperature {C}
- 1, !- High Speed Sizing Factor
- SaturatedExit, !- Evaporation Loss Mode
- , !- Evaporation Loss Factor {percent/K}
- 0.008, !- Drift Loss Percent {percent}
- ConcentrationRatio, !- Blowdown Calculation Mode
- 3; !- Blowdown Concentration Ratio
-
-
-!- =========== ALL OBJECTS IN CLASS: WATERHEATER:MIXED ===========
-
- WaterHeater:Mixed,
- SHWSys1 Water Heater, !- Name
- 2.271247, !- Tank Volume {m3}
- SHWSys1 Water Heater Setpoint Temperature Schedule, !- Setpoint Temperature Schedule Name
- 2.0, !- Deadband Temperature Difference {deltaC}
- 82.2222, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 175842.64, !- Heater Maximum Capacity {W}
- , !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- NATURALGAS, !- Heater Fuel Type
- 0.802764686, !- Heater Thermal Efficiency
- , !- Part Load Factor Curve Name
- 8167.94, !- Off Cycle Parasitic Fuel Consumption Rate {W}
- NATURALGAS, !- Off Cycle Parasitic Fuel Type
- 0.8, !- Off Cycle Parasitic Heat Fraction to Tank
- 8167.94, !- On Cycle Parasitic Fuel Consumption Rate {W}
- NATURALGAS, !- On Cycle Parasitic Fuel Type
- , !- On Cycle Parasitic Heat Fraction to Tank
- SCHEDULE, !- Ambient Temperature Indicator
- Ambient Temp Schedule, !- Ambient Temperature Schedule Name
- , !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 15.60100708, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 15.60100708, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- , !- Peak Use Flow Rate {m3/s}
- , !- Use Flow Rate Fraction Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Use Side Inlet Node Name
- SHWSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name
- 1.0, !- Use Side Effectiveness
- , !- Source Side Inlet Node Name
- , !- Source Side Outlet Node Name
- 1.0, !- Source Side Effectiveness
- AUTOSIZE, !- Use Side Design Flow Rate {m3/s}
- AUTOSIZE, !- Source Side Design Flow Rate {m3/s}
- 1.5; !- Indirect Water Heating Recovery Time {hr}
-
-!- =========== ALL OBJECTS IN CLASS: WATER USE EQUIPMENT ===========
-
- WaterUse:Equipment,
- G SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- G NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- G NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- G N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- G N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- G S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- G S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- G S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F2 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F2 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F3 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F3 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F4 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F4 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- M S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- M S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F6 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F6 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F7 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F7 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F8 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F8 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- F9 S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- F9 S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T SW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T SW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T NW Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T NW Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T SE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T SE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T NE Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T NE Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T N1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T N1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T N2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T N2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T S1 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T S1 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
- WaterUse:Equipment,
- T S2 Apartment sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 3.66e-06, !- Peak Flow Rate {m3/s}
- APT_DHW_SCH, !- Flow Rate Fraction Schedule Name
- SHW Target Temp Sched, !- Target Temperature Schedule Name
- SHW Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- T S2 Apartment, !- Zone Name
- SHW Sensible fract sched,!- Sensible Fraction Schedule Name
- SHW Latent fract sched; !- Latent Fraction Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: WATER USE CONNECTIONS ===========
-
- WaterUse:Connections,
- G SW Apartment sub cat, !- Name
- G SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- G NW Apartment sub cat, !- Name
- G NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- G NE Apartment sub cat, !- Name
- G NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- G N1 Apartment sub cat, !- Name
- G N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- G N2 Apartment sub cat, !- Name
- G N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- G S1 Apartment sub cat, !- Name
- G S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- G S2 Apartment sub cat, !- Name
- G S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- G S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- G S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 SW Apartment sub cat, !- Name
- F2 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 NW Apartment sub cat, !- Name
- F2 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 SE Apartment sub cat, !- Name
- F2 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 NE Apartment sub cat, !- Name
- F2 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 N1 Apartment sub cat, !- Name
- F2 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 N2 Apartment sub cat, !- Name
- F2 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 S1 Apartment sub cat, !- Name
- F2 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F2 S2 Apartment sub cat, !- Name
- F2 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F2 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F2 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 SW Apartment sub cat, !- Name
- F3 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 NW Apartment sub cat, !- Name
- F3 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 SE Apartment sub cat, !- Name
- F3 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 NE Apartment sub cat, !- Name
- F3 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 N1 Apartment sub cat, !- Name
- F3 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 N2 Apartment sub cat, !- Name
- F3 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 S1 Apartment sub cat, !- Name
- F3 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F3 S2 Apartment sub cat, !- Name
- F3 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F3 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F3 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 SW Apartment sub cat, !- Name
- F4 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 NW Apartment sub cat, !- Name
- F4 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 SE Apartment sub cat, !- Name
- F4 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 NE Apartment sub cat, !- Name
- F4 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 N1 Apartment sub cat, !- Name
- F4 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 N2 Apartment sub cat, !- Name
- F4 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 S1 Apartment sub cat, !- Name
- F4 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F4 S2 Apartment sub cat, !- Name
- F4 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F4 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F4 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M SW Apartment sub cat, !- Name
- M SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M NW Apartment sub cat, !- Name
- M NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M SE Apartment sub cat, !- Name
- M SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M NE Apartment sub cat, !- Name
- M NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M N1 Apartment sub cat, !- Name
- M N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M N2 Apartment sub cat, !- Name
- M N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M S1 Apartment sub cat, !- Name
- M S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- M S2 Apartment sub cat, !- Name
- M S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- M S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- M S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 SW Apartment sub cat, !- Name
- F6 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 NW Apartment sub cat, !- Name
- F6 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 SE Apartment sub cat, !- Name
- F6 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 NE Apartment sub cat, !- Name
- F6 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 N1 Apartment sub cat, !- Name
- F6 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 N2 Apartment sub cat, !- Name
- F6 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 S1 Apartment sub cat, !- Name
- F6 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F6 S2 Apartment sub cat, !- Name
- F6 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F6 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F6 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 SW Apartment sub cat, !- Name
- F7 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 NW Apartment sub cat, !- Name
- F7 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 SE Apartment sub cat, !- Name
- F7 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 NE Apartment sub cat, !- Name
- F7 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 N1 Apartment sub cat, !- Name
- F7 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 N2 Apartment sub cat, !- Name
- F7 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 S1 Apartment sub cat, !- Name
- F7 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F7 S2 Apartment sub cat, !- Name
- F7 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F7 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F7 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 SW Apartment sub cat, !- Name
- F8 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 NW Apartment sub cat, !- Name
- F8 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 SE Apartment sub cat, !- Name
- F8 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 NE Apartment sub cat, !- Name
- F8 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 N1 Apartment sub cat, !- Name
- F8 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 N2 Apartment sub cat, !- Name
- F8 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 S1 Apartment sub cat, !- Name
- F8 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F8 S2 Apartment sub cat, !- Name
- F8 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F8 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F8 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 SW Apartment sub cat, !- Name
- F9 SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 NW Apartment sub cat, !- Name
- F9 NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 SE Apartment sub cat, !- Name
- F9 SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 NE Apartment sub cat, !- Name
- F9 NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 N1 Apartment sub cat, !- Name
- F9 N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 N2 Apartment sub cat, !- Name
- F9 N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 S1 Apartment sub cat, !- Name
- F9 S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- F9 S2 Apartment sub cat, !- Name
- F9 S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- F9 S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- F9 S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T SW Apartment sub cat, !- Name
- T SW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T SW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T SW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T NW Apartment sub cat, !- Name
- T NW Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T NW Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T NW Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T SE Apartment sub cat, !- Name
- T SE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T SE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T SE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T NE Apartment sub cat, !- Name
- T NE Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T NE Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T NE Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T N1 Apartment sub cat, !- Name
- T N1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T N1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T N1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T N2 Apartment sub cat, !- Name
- T N2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T N2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T N2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T S1 Apartment sub cat, !- Name
- T S1 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T S1 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T S1 Apartment sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- T S2 Apartment sub cat, !- Name
- T S2 Apartment sub cat Water Inlet Node, !- Inlet Node Name
- T S2 Apartment sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- T S2 Apartment sub cat; !- Water Use Equipment 1 Name
-
- PlantLoop,
- SHWSys1, !- Name
- WATER, !- Fluid Type
- , !- User Defined Fluid Type
- SHWSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name
- SHWSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name
- 60.0, !- Maximum Loop Temperature {C}
- 10.0, !- Minimum Loop Temperature {C}
- AUTOSIZE, !- Maximum Loop Flow Rate {m3/s}
- 0.0, !- Minimum Loop Flow Rate {m3/s}
- AUTOSIZE, !- Plant Loop Volume {m3}
- SHWSys1 Supply Inlet Node, !- Plant Side Inlet Node Name
- SHWSys1 Supply Outlet Node, !- Plant Side Outlet Node Name
- SHWSys1 Supply Branches, !- Plant Side Branch List Name
- SHWSys1 Supply Connectors, !- Plant Side Connector List Name
- SHWSys1 Demand Inlet Node, !- Demand Side Inlet Node Name
- SHWSys1 Demand Outlet Node, !- Demand Side Outlet Node Name
- SHWSys1 Demand Branches, !- Demand Side Branch List Name
- SHWSys1 Demand Connectors, !- Demand Side Connector List Name
- Optimal; !- Load Distribution Scheme
-
- PlantLoop,
- Single Water Plant Loop, !- Name
- Water, !- Fluid Type
- , !- User Defined Fluid Type
- Plant Loop Operation, !- Plant Equipment Operation Scheme Name
- Plant Supply Outlet Node,!- Loop Temperature Setpoint Node Name
- 35, !- Maximum Loop Temperature {C}
- 10, !- Minimum Loop Temperature {C}
- autosize, !- Maximum Loop Flow Rate {m3/s}
- 0, !- Minimum Loop Flow Rate {m3/s}
- autocalculate, !- Plant Loop Volume {m3}
- Plant Supply Inlet Node, !- Plant Side Inlet Node Name
- Plant Supply Outlet Node,!- Plant Side Outlet Node Name
- Plant Supply Side Branches, !- Plant Side Branch List Name
- Plant Supply Side Connectors, !- Plant Side Connector List Name
- Plant Demand Inlet Node, !- Demand Side Inlet Node Name
- Plant Demand Outlet Node,!- Demand Side Outlet Node Name
- Plant Demand Side Branches, !- Demand Side Branch List Name
- Plant Demand Side Connectors, !- Demand Side Connector List Name
- SequentialLoad, !- Load Distribution Scheme
- , !- Availability Manager List Name
- DualSetpointDeadband; !- Plant Loop Demand Calculation Scheme
-
-!- =========== ALL OBJECTS IN CLASS: PIPE:ADIABATIC ===========
-
- Pipe:Adiabatic,
- SHWSys1 Supply Equipment Bypass Pipe, !- Name
- SHWSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name
- SHWSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Supply Outlet Pipe, !- Name
- SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Inlet Node Name
- SHWSys1 Supply Outlet Node; !- Outlet Node Name
-
-
- Pipe:Adiabatic,
- SHWSys1 Demand Inlet Pipe, !- Name
- SHWSys1 Demand Inlet Node, !- Inlet Node Name
- SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Demand Bypass Pipe, !- Name
- SHWSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name
- SHWSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Demand Outlet Pipe, !- Name
- SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Inlet Node Name
- SHWSys1 Demand Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Plant Demand Inlet Pipe, !- Name
- Plant Demand Inlet Node, !- Inlet Node Name
- Plant Demand Entrance Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Plant Demand Side Bypass,!- Name
- Cond Demand Bypass Inlet Node, !- Inlet Node Name
- Cond Demand Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Plant Demand Outlet Pipe,!- Name
- Plant Demand Exit Pipe Inlet Node, !- Inlet Node Name
- Plant Demand Outlet Node;!- Outlet Node Name
-
- Pipe:Adiabatic,
- Plant Supply Side Bypass,!- Name
- Plant Supply Bypass Inlet Node, !- Inlet Node Name
- Plant Supply Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Plant Supply Outlet, !- Name
- Plant Supply Exit Pipe Inlet Node, !- Inlet Node Name
- Plant Supply Outlet Node;!- Outlet Node Name
-
-
-!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATIONSCHEMES ===========
-
- PlantEquipmentOperationSchemes,
- SHWSys1 Loop Operation Scheme List, !- Name
- PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type
- SHWSys1 Operation Scheme,!- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
- PlantEquipmentOperation:HeatingLoad,
- SHWSys1 Operation Scheme,!- Name
- 0.0, !- Load Range 1 Lower Limit {W}
- 1000000000000000, !- Load Range 1 Upper Limit {W}
- SHWSys1 Equipment List; !- Range 1 Equipment List Name
-
- PlantEquipmentList,
- SHWSys1 Equipment List, !- Name
- WaterHeater:Mixed, !- Equipment 1 Object Type
- SHWSys1 Water Heater; !- Equipment 1 Name
-
- PlantEquipmentOperationSchemes,
- Plant Loop Operation, !- Name
- PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type
- WSHPPlant Heat Operation Scheme, !- Control Scheme 1 Name
- All On, !- Control Scheme 1 Schedule Name
- PlantEquipmentOperation:CoolingLoad, !- Control Scheme 2 Object Type
- WSHPPlant Cool Operation Scheme, !- Control Scheme 2 Name
- All On; !- Control Scheme 2 Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:COOLINGLOAD ===========
-
- PlantEquipmentOperation:CoolingLoad,
- WSHPPlant Cool Operation Scheme, !- Name
- 0, !- Load Range 1 Lower Limit {W}
- 1000000000000000, !- Load Range 1 Upper Limit {W}
- WSHPPlant Cooling Equipment; !- Range 1 Equipment List Name
-
-!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:HEATINGLOAD ===========
-
- PlantEquipmentOperation:HeatingLoad,
- WSHPPlant Heat Operation Scheme, !- Name
- 0, !- Load Range 1 Lower Limit {W}
- 1000000000000000, !- Load Range 1 Upper Limit {W}
- WSHPPlant Heating Equipment; !- Range 1 Equipment List Name
-
- PlantEquipmentList,
- WSHPPlant Heating Equipment, !- Name
- Boiler:HotWater, !- Equipment 1 Object Type
- Central Boiler; !- Equipment 1 Name
-
- PlantEquipmentList,
- WSHPPlant Cooling Equipment, !- Name
- EvaporativeFluidCooler:TwoSpeed, !- Equipment 1 Object Type
- Central Tower; !- Equipment 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:SCHEDULED ===========
-
- AvailabilityManager:Scheduled,
- AirLoop G SW Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop G NW Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop G NE Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop G N1 Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop G N2 Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop G S1 Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop G S2 Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop Office Availability, !- Name
- All On; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- AirLoop AllApts Availability, !- Name
- All On; !- Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGERASSIGNMENTLIST ===========
-
- AvailabilityManagerAssignmentList,
- AirLoop G SW Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G SW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop G NW Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G NW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop G NE Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G NE Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop G N1 Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G N1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop G N2 Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G N2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop G S1 Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G S1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop G S2 Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop G S2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop Office Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop Office Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- AirLoop AllApts Availability Manager, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- AirLoop AllApts Availability; !- Availability Manager 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED ===========
-
- SetpointManager:Scheduled,
- SHWSys1 Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- SHWSys1-Loop-Temp-Schedule, !- Schedule Name
- SHWSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED:DUALSETPOINT ===========
-
-
- SetpointManager:Scheduled:DualSetpoint,
- Water Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- PLANT LOOP HIGH TEMP SCHEDULE, !- High Setpoint Schedule Name
- PLANT LOOP LOW TEMP SCHEDULE, !- Low Setpoint Schedule Name
- Plant Supply Outlet Node;!- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled:DualSetpoint,
- Water Loop Setpoint Manager new, !- Name
- Temperature, !- Control Variable
- PLANT LOOP HIGH TEMP SCHEDULE, !- High Setpoint Schedule Name
- PLANT LOOP LOW TEMP SCHEDULE, !- Low Setpoint Schedule Name
- CENTRAL TOWER OUTLET NODE; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled:DualSetpoint,
- Water Loop Setpoint Manager new 2, !- Name
- Temperature, !- Control Variable
- PLANT LOOP HIGH TEMP SCHEDULE, !- High Setpoint Schedule Name
- PLANT LOOP LOW TEMP SCHEDULE, !- Low Setpoint Schedule Name
- CENTRAL BOILER OUTLET NODE; !- Setpoint Node or NodeList Name
-
-
-
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- G SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- G SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- G NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- G NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- G NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- G NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F2 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F2 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F2 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F2 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F2 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F2 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F2 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F2 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F2 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F2 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F2 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F2 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F2 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F2 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F2 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F2 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F2 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F3 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F3 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F3 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F3 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F3 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F3 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F3 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F3 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F3 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F3 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F3 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F3 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F3 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F3 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F3 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F3 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F3 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F4 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F4 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F4 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F4 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F4 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F4 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F4 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F4 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F4 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F4 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F4 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F4 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F4 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F4 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F4 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F4 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F4 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- M SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- M SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- M NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- M NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- M SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- M SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- M NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- M NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F6 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F6 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F6 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F6 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F6 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F6 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F6 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F6 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F6 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F6 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F6 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F6 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F6 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F6 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F6 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F6 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F6 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F7 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F7 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F7 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F7 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F7 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F7 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F7 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F7 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F7 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F7 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F7 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F7 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F7 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F7 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F7 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F7 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F7 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F8 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F8 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F8 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F8 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F8 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F8 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F8 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F8 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F8 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F8 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F8 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F8 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F8 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F8 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F8 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F8 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F8 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- F9 S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- F9 S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- F9 S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- F9 S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- F9 S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- F9 S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- F9 S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- F9 S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- F9 S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- F9 S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- F9 S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- F9 S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- F9 S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- F9 S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- F9 S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- F9 S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- F9 S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- T SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 233.6875, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- T SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 233.6875, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- T NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 233.6875, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- T NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 233.6875, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- T SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- T SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- T NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- T NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-!No PV for this case
-!- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC ===========
-
- Curve:Quadratic,
- HPACCOOLPLFFPLR, !- Name
- 0.75, !- Coefficient1 Constant
- 0.25, !- Coefficient2 x
- 0.0, !- Coefficient3 x**2
- 0.0, !- Minimum Value of x
- 1.0; !- Maximum Value of x
-
- Curve:Quadratic,
- Central Boiler Efficiency Curve, !- Name
- 1.0, !- Coefficient1 Constant
- 0.0, !- Coefficient2 x
- 0.0, !- Coefficient3 x**2
- 0, !- Minimum Value of x
- 1; !- Maximum Value of x
-
- Curve:Quadratic,
- ChillerCentEIRPLR, !- Name
- 0.2229, !- Coefficient1 Constant
- 0.3134, !- Coefficient2 x
- 0.4637, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 1.0000; !- Maximum Value of x
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC ===========
-
- Curve:Biquadratic,
- ChillerCentEIRFT, !- Name
- 0.9339, !- Coefficient1 Constant
- -0.0582, !- Coefficient2 x
- 0.0045, !- Coefficient3 x**2
- 0.0024, !- Coefficient4 y
- 0.0005, !- Coefficient5 y**2
- -0.0012, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 24.0000, !- Minimum Value of y
- 35.0000; !- Maximum Value of y
-
- Curve:Biquadratic,
- ChillerCentCapFT, !- Name
- 0.2579, !- Coefficient1 Constant
- 0.0389, !- Coefficient2 x
- -0.0002, !- Coefficient3 x**2
- 0.0469, !- Coefficient4 y
- -0.0009, !- Coefficient5 y**2
- -0.0003, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 24.0000, !- Minimum Value of y
- 35.0000; !- Maximum Value of y
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY ===========
-
- Output:VariableDictionary,IDF;
-
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:SUMMARYREPORTS ===========
-
-
- Output:Table:SummaryReports,
- AllSummaryAndMonthly; !- Report 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:TABLE:STYLE ===========
-
- OutputControl:Table:Style,
- CommaAndHTML; !- Column Separator
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:REPORTINGTOLERANCES ===========
-
-
-
-OutputControl:ReportingTolerances,
- 0.556, !- Tolerance for Time Heating Setpoint Not Met {deltaC}
- 0.556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC}
-
-!- =========== ALL OBJECTS IN CLASS: REPORT METERFILEONLY ===========
-
- Output:Meter:MeterFileOnly,Electricity:Facility,Hourly;
-
- Output:Meter:MeterFileOnly,ElectricityNet:Facility,Hourly;
-
- Output:Meter:MeterFileOnly,Gas:Facility,Hourly;
-
- Output:Meter:MeterFileOnly,InteriorLights:Electricity,Hourly;
-
- Output:Meter:MeterFileOnly,InteriorEquipment:Electricity,Hourly;
-!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE ===========
-
- Output:Table:Monthly,
- NameHolderMonthlySummary TaskPurpose ProgressIndicator, !- Name ProgressIndicator,ForDetermination2019, ...
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary CodeName ASHRAE901, !- Name ASHRAE901, ASHRAE1891, IECC, Title24, ORSC, IGCC, ...
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary CodeYear 2019, !- Name all years for ASHRAE90.1, IECC, ASHRAE189.1
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary CodeAmendment NoneAmend, !- Name StateAmend,EEM, NoneAmend for national or state without amendment
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary PrototypeName ApartmentHighRise, !- Name 16 Prototypes
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary TaskScope National, !- Name National, State, City
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
-
- Output:Table:Monthly,
- NameHolderMonthlySummary State National, !- Name National for national analysis, NewYork, Utah,... for state analysis, or city name for city analysis. Spell out the name of the state without space between words
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary ClimateZone 6A, !- Name 0-8
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary RepresentCity USA_MN_Rochester, !- Name representative city like Honolulu for national, for each state, for city analysis. this is not the city of the weather file. The weather city will be extracted from epw file
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE ===========
-
-! Output:Variable,*,Site Outdoor Air Drybulb Temperature,Hourly;
-! Output:Variable,*,Site Outdoor Air Wetbulb Temperature,Hourly;
-! Output:Variable,OCC_APT_SCH,Schedule Value,Hourly;
-! Output:Variable,OCC_OFF_SCH,Schedule Value,Hourly;
-!
-! ! outdoor air flow rate
-!
-! Output:Variable,F2 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F2 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F3 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F4 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F6 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F7 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F8 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,F9 SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,G SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,M SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Office Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T N1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T N2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T NE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T NW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T S1 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T S2 Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T SE Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,T SW Apartment Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-!
-! ! Supply Air Flow T
-!
-! Output:Variable,AirLoop F2 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop G SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop M SW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop Office Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T N1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T N2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T NE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T NW Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T S1 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T S2 Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T SE Return Air Inlet, System Node Temperature,Hourly;
-! Output:Variable,AirLoop T SW Return Air Inlet, System Node Temperature,Hourly;
-!
-! ! Supply Air Flow T web
-!
-! Output:Variable,AirLoop F2 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop Office Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T N1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T N2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T NE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T NW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T S1 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T S2 Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T SE Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T SW Return Air Inlet, System Node Wetbulb Temperature,Hourly;
-!
-! ! Supply Air Flow flow rate
-!
-! Output:Variable,AirLoop F2 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop Office Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T N1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T N2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T NE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T NW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T S1 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T S2 Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T SE Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T SW Return Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-!
-! ! Supply Air Flow T
-!
-! Output:Variable,AirLoop F2 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F2 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F3 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F4 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F6 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F7 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F8 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop F9 SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop G SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop M SW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop Office Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T N1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T N2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T NE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T NW Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T S1 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T S2 Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T SE Supply Air Outlet,System Node Temperature,Hourly;
-! Output:Variable,AirLoop T SW Supply Air Outlet,System Node Temperature,Hourly;
-!
-! ! Supply Air Flow T web
-!
-! Output:Variable,AirLoop F2 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F2 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F3 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F4 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F6 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F7 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F8 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop F9 SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop G SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop M SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop Office Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T N1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T N2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T NE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T NW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T S1 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T S2 Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T SE Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,AirLoop T SW Supply Air Outlet, System Node Wetbulb Temperature,Hourly;
-!
-! ! Supply Air Flow flow rate
-!
-! Output:Variable,AirLoop F2 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F2 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F3 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F4 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F6 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F7 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F8 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop F9 SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop G SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop M SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop Office Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T N1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T N2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T NE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T NW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T S1 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T S2 Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T SE Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,AirLoop T SW Supply Air Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-!
-! ! plant load
-!
-! Output:Variable,*,Chiller Evaporator Cooling Rate,hourly;
-! Output:Variable,*,Boiler Heating Rate,Hourly;
-!
-! ! coil load
-!
-! Output:Variable,*,Air System Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J
-! Output:Variable,*,Air System Heating Coil Total Heating Energy,hourly; !- HVAC Sum J
-!
-! ! fan and pump
-!
-! Output:Variable,*,Fan Electric Power,hourly; !- HVAC Average W
-! Output:Variable,*,Pump Electric Power,hourly; !- HVAC Average W
-! Output:Variable,*,Humidifier Electric Power,hourly; !- HVAC Average W
-!
-! ! SHW
-!
-! Output:Variable,*,Water Heater Heating Rate,Hourly; ! The average heating rate supplied by the heater element or burner.
-!
-! ! Utility and Submeter
-!
-! Output:Meter,Electricity:Facility,Hourly;
-! Output:Meter,Gas:Facility,Hourly;
-! Output:Meter,InteriorLights:Electricity,Hourly;
-! Output:Meter,ExteriorLights:Electricity,Hourly;
-! Output:Meter,InteriorEquipment:Electricity,Hourly;
-! Output:Meter,ExteriorEquipment:Electricity,Hourly;
-! Output:Meter,Fans:Electricity,Hourly;
-! Output:Meter,Pumps:Electricity,Hourly;
-! Output:Meter,Heating:Electricity,Hourly;
-! Output:Meter,Cooling:Electricity,Hourly;
-! Output:Meter,HeatRejection:Electricity,Hourly;
-! Output:Meter,Humidifier:Electricity,Hourly;
-! Output:Meter,HeatRecovery:Electricity,Hourly;
-! Output:Meter,DHW:Electricity,Hourly;
-! Output:Meter,Cogeneration:Electricity,Hourly;
-! Output:Meter,Refrigeration:Electricity,Hourly;
-! Output:Meter,WaterSystems:Electricity,Hourly;
-!
-! Output:Meter,InteriorLights:Gas,Hourly;
-! Output:Meter,ExteriorLights:Gas,Hourly;
-! Output:Meter,InteriorEquipment:Gas,Hourly;
-! Output:Meter,ExteriorEquipment:Gas,Hourly;
-! Output:Meter,Fans:Gas,Hourly;
-! Output:Meter,Pumps:Gas,Hourly;
-! Output:Meter,Heating:Gas,Hourly;
-! Output:Meter,Cooling:Gas,Hourly;
-! Output:Meter,HeatRejection:Gas,Hourly;
-! Output:Meter,Humidifier:Gas,Hourly;
-! Output:Meter,HeatRecovery:Gas,Hourly;
-! Output:Meter,DHW:Gas,Hourly;
-! Output:Meter,Cogeneration:Gas,Hourly;
-! Output:Meter,Refrigeration:Gas,Hourly;
-! Output:Meter,WaterSystems:Gas,Hourly;
-!
-!
-! ! coil load
-!
-! ! Output:Variable,*,Air System Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Cooling Coil Electric Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; !- HVAC Average W
-! ! Output:Variable,*,Air System Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Air System DX Cooling Coil Electric Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Air System Heating Coil Total Heating Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Heating Coil Electric Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Heating Coil Heating Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Heating Coil Heating Rate,hourly; !- HVAC Average W
-! ! Output:Variable,*,Air System Heating Coil Total Heating Energy,hourly; !- HVAC Sum J
-! ! Output:Variable,*,Air System DX Heating Coil Electric Energy,hourly; !- HVAC Sum J
-!
-
-
-
-
-
-
-
-
- EnergyManagementSystem:Sensor,
- Facility_Int_LTG, !- Name
- , !- Output:Variable or Output:Meter Index Key Name
- InteriorLights:Electricity; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:GlobalVariable,
- Wired_LTG; !- Erl Variable 1 Name
-
- EnergyManagementSystem:Program,
- Transformer_Load_Prog, !- Name
- SET Wired_LTG = Facility_Int_LTG*0.0015; !- Program Line 1
-
- EnergyManagementSystem:ProgramCallingManager,
- Transformer_Load_Prog_Manager, !- Name
- AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point
- Transformer_Load_Prog; !- Program Name 1
-
- EnergyManagementSystem:OutputVariable,
- Wired_LTG, !- Name
- Wired_LTG, !- EMS Variable Name
- Summed, !- Type of Data in Variable
- ZoneTimeStep, !- Update Frequency
- , !- EMS Program or Subroutine Name
- J; !- Units
-
- Meter:Custom,
- Wired_LTG_Electricity, !- Name
- Electricity, !- Fuel Type
- , !- Key Name 1
- Wired_LTG; !- Output Variable or Meter Name 1
-
- Meter:CustomDecrement,
- Wired_Int_EQUIP, !- Name
- Electricity, !- Fuel Type
- InteriorEquipment:Electricity, !- Source Meter Name
- T Corridor_Elevators_Equip, !- Key Name 1
- Electric Equipment Electric Energy; !- Output Variable or Meter Name 1
-
- ElectricLoadCenter:Transformer,
- Transformer 1, !- Name
- Always_On, !- Availability Schedule Name
- PowerInFromGrid, !- Transformer Usage
- , !- Zone Name
- , !- Radiative Fraction
- 75000, !- Rated Capacity {VA}
- 3, !- Phase
- Aluminum, !- Conductor Material
- 150, !- Full Load Temperature Rise {C}
- 0.1, !- Fraction of Eddy Current Losses
- NominalEfficiency, !- Performance Input Method
- , !- Rated No Load Loss {W}
- , !- Rated Load Loss {W}
- 0.986, !- Nameplate Efficiency
- 0.35, !- Per Unit Load for Nameplate Efficiency
- 75, !- Reference Temperature for Nameplate Efficiency {C}
- , !- Per Unit Load for Maximum Efficiency
- Yes, !- Consider Transformer Loss for Utility Cost
- Wired_LTG_Electricity, !- Meter 1 Name
- Wired_INT_EQUIP; !- Meter 2 Name
-
-
-
- EnergyManagementSystem:GlobalVariable,
- BoilerType, !- Erl Variable 1 Name
- CapRated, !- Erl Variable 2 Name
- EtRated, !- Erl Variable 3 Name
- PLRx, !-
- Ecx, !-
- SkinLossRate; !-
-
- EnergyManagementSystem:Sensor,
- BoilerPLR, !- Name
- Central Boiler, !- Output:Variable or Output:Meter Index Key Name
- Boiler Part Load Ratio; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Actuator,
- BoilerCurve, !- Name
- Central Boiler Efficiency Curve, !- Actuated Component Unique Name
- Curve, !- Actuated Component Type
- Curve Result; !- Actuated Component Control Type
-
-EnergyManagementSystem:Program, ! Addendum AM
- SetBoilerPar, !- Name
-SET CapRated = 258612.11, ! EMS Bolier Nominal Capacity {W}.
-SET EtRated = 0.8, ! EMS Boiler Nominal Thermal Efficiency. overriden by script
- SET CapRated = (CapRated *3.412)/1000, !Change from W to MBH
- SET SkinLossRate = 0.02, !-
- SET BoilerType = 1,
- IF BoilerType == 1, !-
- IF CapRated >10000, !-
- SET PLRx = 0.2, !-
- ELSEIF CapRated >5000, !-
- SET PLRx = 0.25, !-
- ELSEIF CapRated >1000, !-
- SET PLRx = 0.33, !-
- ELSE, !-
- SET BoilerType = 2, !-
- SET PLRx = 0.2, !-
- ENDIF, !-
- ELSE, !-
- SET PLRx = 0.2, !-
- ENDIF, !-
- IF BoilerType == 1, !-
- SET CurveX = 0.975 + 0.305 * PLRx - 0.527 * (PLRx^2) + 0.249 * (PLRx^3), !-
- ELSE, !-
- SET CurveX = 0.907 + 0.320 * PLRx - 0.420 * (PLRx^2) + 0.193 * (PLRx^3), !-
- ENDIF, !-
- SET LoadX = CapRated * PLRx, !-
- SET Etx = CurveX * EtRated, !-
- SET InputEx = LoadX/Etx, !-
- SET SkinEx = CapRated * SkinLossRate, !-
- SET Ecx = (LoadX + SkinEx)/InputEx; !-
-
- EnergyManagementSystem:Program,
- SetBoilerCurve, !- Name
- IF BoilerPLR >= PLRx, !- Program Line 1
- IF BoilerType == 1, !- Program Line 2
- SET BoilerCurve = 0.975 + 0.305*BoilerPLR - 0.527*(BoilerPLR^2) + 0.249*(BoilerPLR^3), !-
- ELSE, !-
- SET BoilerCurve = 0.907 + 0.320*BoilerPLR - 0.420*(BoilerPLR^2) + 0.193*(BoilerPLR^3), !-
- ENDIF, !-
- ELSE, !-
- IF BoilerPLR == 0, !-
- SET BoilerCurve = NULL, !-
- ELSE, !-
- IF BoilerPLR <0.05, !-
- SET BoilerCurve = (0.05/(0.05 + SkinLossRate)) * (Ecx/EtRated), !-
- ELSE, !-
- SET BoilerCurve = (BoilerPLR/(BoilerPLR + SkinLossRate)) * (Ecx/EtRated), !-
- ENDIF, !-
- ENDIF, !-
- ENDIF; !-
-
- EnergyManagementSystem:ProgramCallingManager,
- BoilerParManager, !- Name
- BeginNewEnvironment, !- EnergyPlus Model Calling Point
- SetBoilerPar; !- Program Name 1
-
- EnergyManagementSystem:ProgramCallingManager,
- BoilerCurveManager, !- Name
- InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point
- SetBoilerCurve; !- Program Name 1
-
-
- EnergyManagementSystem:Sensor,
- OAT, !- Name
- Environment, !- Output:Variable or Output:Meter Index Key Name
- Site Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name
-
-
-
-
-
-
-
-
-
-EnergyManagementSystem:Actuator,
- CLGSETP_OFF_SCH_Actuator,!- Name
- CLGSETP_OFF_SCH_Yes_Optimum, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
-
-
-
-
-
-
-
-
-EnergyManagementSystem:Actuator,
- HTGSETP_OFF_SCH_Actuator,!- Name
- HTGSETP_OFF_SCH_Yes_Optimum, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
-
-
-
-
-
-
-
-
-EnergyManagementSystem:ProgramCallingManager,
- OA_BASED_OPTIMUM_START_EMS_Program Manager, !- Name
- BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point
- OA_BASED_OPTIMUM_START_EMS_Program; !- Program Name 1
-
-
-
-
-
-
-
-
-
-EnergyManagementSystem:Program,
- OA_BASED_OPTIMUM_START_EMS_Program, !- Name
- IF DaylightSavings==0 && Hour==7 && DayOfWeek>1 && DayOfWeek<7 && OAT<23.9 && OAT>1.7, !- Program Line 1
- SET CLGSETP_OFF_SCH_Actuator = 29.4, !- Program Line 2
- SET HTGSETP_OFF_SCH_Actuator = 15.6, !-
- ELSEIF DaylightSavings==1 && Hour==6 && DayOfWeek>1 && DayOfWeek<7 && OAT<23.9 && OAT>1.7, !-
- SET CLGSETP_OFF_SCH_Actuator = 29.4, !-
- SET HTGSETP_OFF_SCH_Actuator = 15.6, !-
- ELSE, !-
- SET CLGSETP_SCH_Actuator = NULL, !-
- SET HTGSETP_SCH_Actuator = NULL, !-
- ENDIF; !-
-
-
-
-
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: ZONEVENTILATION:WINDANDSTACKOPENAREA ===========
-
-ZoneVentilation:WindandStackOpenArea,
- G SW Apartment Sliding Door Ventilation, !- Name
- G SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- G NW Apartment Sliding Door Ventilation, !- Name
- G NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- G NE Apartment Sliding Door Ventilation, !- Name
- G NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- G N1 Apartment Sliding Door Ventilation, !- Name
- G N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- G N2 Apartment Sliding Door Ventilation, !- Name
- G N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- G S1 Apartment Sliding Door Ventilation, !- Name
- G S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- G S2 Apartment Sliding Door Ventilation, !- Name
- G S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M SW Apartment Sliding Door Ventilation, !- Name
- M SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M NW Apartment Sliding Door Ventilation, !- Name
- M NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M SE Apartment Sliding Door Ventilation, !- Name
- M SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M NE Apartment Sliding Door Ventilation, !- Name
- M NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M N1 Apartment Sliding Door Ventilation, !- Name
- M N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M N2 Apartment Sliding Door Ventilation, !- Name
- M N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M S1 Apartment Sliding Door Ventilation, !- Name
- M S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- M S2 Apartment Sliding Door Ventilation, !- Name
- M S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T SW Apartment Sliding Door Ventilation, !- Name
- T SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T NW Apartment Sliding Door Ventilation, !- Name
- T NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T SE Apartment Sliding Door Ventilation, !- Name
- T SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T NE Apartment Sliding Door Ventilation, !- Name
- T NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T N1 Apartment Sliding Door Ventilation, !- Name
- T N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T N2 Apartment Sliding Door Ventilation, !- Name
- T N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T S1 Apartment Sliding Door Ventilation, !- Name
- T S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- T S2 Apartment Sliding Door Ventilation, !- Name
- T S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 SW Apartment Sliding Door Ventilation, !- Name
- F2 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 NW Apartment Sliding Door Ventilation, !- Name
- F2 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 SE Apartment Sliding Door Ventilation, !- Name
- F2 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 NE Apartment Sliding Door Ventilation, !- Name
- F2 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 N1 Apartment Sliding Door Ventilation, !- Name
- F2 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 N2 Apartment Sliding Door Ventilation, !- Name
- F2 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 S1 Apartment Sliding Door Ventilation, !- Name
- F2 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F2 S2 Apartment Sliding Door Ventilation, !- Name
- F2 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 SW Apartment Sliding Door Ventilation, !- Name
- F3 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 NW Apartment Sliding Door Ventilation, !- Name
- F3 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 SE Apartment Sliding Door Ventilation, !- Name
- F3 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 NE Apartment Sliding Door Ventilation, !- Name
- F3 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 N1 Apartment Sliding Door Ventilation, !- Name
- F3 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 N2 Apartment Sliding Door Ventilation, !- Name
- F3 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 S1 Apartment Sliding Door Ventilation, !- Name
- F3 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F3 S2 Apartment Sliding Door Ventilation, !- Name
- F3 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 SW Apartment Sliding Door Ventilation, !- Name
- F4 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 NW Apartment Sliding Door Ventilation, !- Name
- F4 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 SE Apartment Sliding Door Ventilation, !- Name
- F4 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 NE Apartment Sliding Door Ventilation, !- Name
- F4 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 N1 Apartment Sliding Door Ventilation, !- Name
- F4 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 N2 Apartment Sliding Door Ventilation, !- Name
- F4 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 S1 Apartment Sliding Door Ventilation, !- Name
- F4 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F4 S2 Apartment Sliding Door Ventilation, !- Name
- F4 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 SW Apartment Sliding Door Ventilation, !- Name
- F6 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 NW Apartment Sliding Door Ventilation, !- Name
- F6 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 SE Apartment Sliding Door Ventilation, !- Name
- F6 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 NE Apartment Sliding Door Ventilation, !- Name
- F6 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 N1 Apartment Sliding Door Ventilation, !- Name
- F6 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 N2 Apartment Sliding Door Ventilation, !- Name
- F6 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 S1 Apartment Sliding Door Ventilation, !- Name
- F6 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F6 S2 Apartment Sliding Door Ventilation, !- Name
- F6 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 SW Apartment Sliding Door Ventilation, !- Name
- F7 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 NW Apartment Sliding Door Ventilation, !- Name
- F7 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 SE Apartment Sliding Door Ventilation, !- Name
- F7 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 NE Apartment Sliding Door Ventilation, !- Name
- F7 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 N1 Apartment Sliding Door Ventilation, !- Name
- F7 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 N2 Apartment Sliding Door Ventilation, !- Name
- F7 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 S1 Apartment Sliding Door Ventilation, !- Name
- F7 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F7 S2 Apartment Sliding Door Ventilation, !- Name
- F7 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 SW Apartment Sliding Door Ventilation, !- Name
- F8 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 NW Apartment Sliding Door Ventilation, !- Name
- F8 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 SE Apartment Sliding Door Ventilation, !- Name
- F8 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 NE Apartment Sliding Door Ventilation, !- Name
- F8 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 N1 Apartment Sliding Door Ventilation, !- Name
- F8 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 N2 Apartment Sliding Door Ventilation, !- Name
- F8 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 S1 Apartment Sliding Door Ventilation, !- Name
- F8 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F8 S2 Apartment Sliding Door Ventilation, !- Name
- F8 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 SW Apartment Sliding Door Ventilation, !- Name
- F9 SW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 NW Apartment Sliding Door Ventilation, !- Name
- F9 NW Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 SE Apartment Sliding Door Ventilation, !- Name
- F9 SE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 NE Apartment Sliding Door Ventilation, !- Name
- F9 NE Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 N1 Apartment Sliding Door Ventilation, !- Name
- F9 N1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 N2 Apartment Sliding Door Ventilation, !- Name
- F9 N2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 S1 Apartment Sliding Door Ventilation, !- Name
- F9 S1 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-ZoneVentilation:WindandStackOpenArea,
- F9 S2 Apartment Sliding Door Ventilation, !- Name
- F9 S2 Apartment, !- Zone Name
- 0.1181, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 15.2393, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
-
-Schedule:Compact,
- Sliding_Doors_Ventilation_Availability_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: WinterDesignDay SummerDesignDay, !- Field 2
- Until: 24:00, !- Field 3
- 0, !- Field 4
- For: Allotherdays, !- Field 5
- Until: 6:00, !- Field 6
- 0, !- Field 7
- Until: 22:00, !- Field 8
- 1, !- Field 9
- Until: 24:00, !- Field 10
- 0; !- Field 11
-
-
-
-
-
-
-
-EnergyManagementSystem:Sensor,
- M_S1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name
- M S1 APARTMENT, !- Output:Variable or Output:Meter Index Key Name
- Zone Ventilation Standard Density Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
-EnergyManagementSystem:Sensor,
- M_N1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name
- M N1 APARTMENT, !- Output:Variable or Output:Meter Index Key Name
- Zone Ventilation Standard Density Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
-EnergyManagementSystem:Actuator,
- S_Apartment_CLGSETP_Actuator, ! Name
- S CLGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:Actuator,
- S_Apartment_HTGSETP_Actuator, ! Name
- S HTGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:Actuator,
- N_Apartment_CLGSETP_Actuator, ! Name
- N CLGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:Actuator,
- N_Apartment_HTGSETP_Actuator, ! Name
- N HTGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:ProgramCallingManager,
- Door_Switch_Enabled_Thermostat_Reset, ! Name
- BeginTimestepBeforePredictor, ! EnergyPlus Model Calling Point
- Door_Switch_Enabled_Thermostat_Reset_Program_N_Apartments,
- Door_Switch_Enabled_Thermostat_Reset_Program_S_Apartments;
-
-
-EnergyManagementSystem:Program,
- Door_Switch_Enabled_Thermostat_Reset_Program_S_Apartments, ! Name
- IF (M_S1_Apartment_Sliding_Door_Ventilation_Sensor > 0),
- SET S_Apartment_CLGSETP_Actuator = 32.22,
- SET S_Apartment_HTGSETP_Actuator = 12.78,
- ELSE,
- SET S_Apartment_CLGSETP_Actuator = null,
- SET S_Apartment_HTGSETP_Actuator = null,
- ENDIF;
-
-EnergyManagementSystem:Program,
- Door_Switch_Enabled_Thermostat_Reset_Program_N_Apartments, ! Name
- IF (M_N1_Apartment_Sliding_Door_Ventilation_Sensor > 0),
- SET N_Apartment_CLGSETP_Actuator = 32.22,
- SET N_Apartment_HTGSETP_Actuator = 12.78,
- ELSE,
- SET N_Apartment_CLGSETP_Actuator = null,
- SET N_Apartment_HTGSETP_Actuator = null,
- ENDIF;
-
-
-
-
-
-
-
diff --git a/hub/data/schedules/idf_files/ASHRAE901_ApartmentMidRise_STD2019_Rochester.idf b/hub/data/schedules/idf_files/ASHRAE901_ApartmentMidRise_STD2019_Rochester.idf
deleted file mode 100644
index 6cd4f6a5..00000000
--- a/hub/data/schedules/idf_files/ASHRAE901_ApartmentMidRise_STD2019_Rochester.idf
+++ /dev/null
@@ -1,18640 +0,0 @@
-
-!The DOE Prototype Building Models were developed by Pacific Northwest National Laboratory (PNNL), under contract with the U.S.
-!Department of Energy (DOE). These building models were derived from DOE's Commercial Reference Building Models with modifications
-!based on input from the ASHRAE Standard 90.1 committee, the Advanced Energy Design Guide series, and building industry experts. The
-!prototypes models were developed to quantify energy saving impacts from newly published editions of ASHRAE Standard 90.1, 189.1, IECC,
-!and other energy codes and standards. The basic building descriptions can be found in the Scorecards posted at www.energycodes.gov
-!website. The recommended citation of the prototype models is
-!
-!DOE and PNNL. 2020. Commercial Prototype Building Models, Richland, WA, Pacific Northwest National Laboratory. Available at https://www.energycodes.gov/development/commercial/prototype_models.
-!
-!Detailed descriptions of the prototype model development and addenda modeling strategies can be found in the following reports:
-!DOE, 2020. Preliminary Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2019. Report prepared by Zhang, J., M. Rosenberg, J.
-!Lerond, Y. Xie, Nambia, C., Y. Chen, R. Hart, M. Halverson, D. Maddox, and S. Goel, Richland, WA, Pacific Northwest National Laboratory.
-!
-!Zhang, J., Y. Chen, Y. Xie, M. Rosenberg, R. Hart. Energy and Energy Cost Savings Analysis of the 2018 IECC for Commercial Buildings.
-!2018. PNNL-28125. Richland, WA: Pacific Northwest National Laboratory.
-!
-!DOE. 2017. Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2016. Prepared by Athalye, R.A, M.A. Halverson, M.I. Rosenberg, B. Liu,
-!J. Zhang, R. Hart, V.V. Mendon, S. Goel, Y. Chen, Y. Xie, and M. Zhao, Richland, WA, Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/02202018_Standard_90.1-2016_Determination_TSD.pdf.
-!
-!Zhang, J., Y. Xie, R.A. Athalye, J. Zhuge, M. Rosenberg, R. Hart, and B. Liu. Energy and Energy Cost Savings Analysis of the 2015 IECC
-!for Commercial Buildings. 2015. PNNL-24269 Rev. 1. Richland, WA: Pacific Northwest National
-!Laboratory. https://www.energycodes.gov/sites/default/files/documents/2015_IECC_Commercial_Analysis.pdf.
-!
-!Halverson M.A., M.I. Rosenberg, W. Wang, J. Zhang, V.V. Mendon, R.A. Athalye, Y. Xie, R. Hart, S. Goel, 2014. ANSI/ASHRAE/IES Standard
-!90.1-2013 Determination of Energy Savings: Quantitative Analysis, PNNL-23479. Richland, WA: Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/901-2013_finalCommercialDeterminationQuantitativeAnalysis_TSD_0.pdf.
-!
-!Goel S., R.A. Athalye, W. Wang, J. Zhang, M.I. Rosenberg, Y. Xie, and R. Hart, et al. 2014. Enhancements to ASHRAE Standard 90.1
-!Prototype Building Models. PNNL-23269. Richland, WA: Pacific Northwest National Laboratory. https://www.pnnl.gov/main/publications/external/technical_reports/PNNL-23269.pdf.
-!
-!Zhang J., R.A. Athalye, R. Hart, M.I. Rosenberg, Y. Xie, S. Goel, and V.V. Mendon, et al. 2013. Energy and Energy Cost Savings Analysis
-!of the IECC for Commercial Buildings. PNNL-22760. Richland, WA: Pacific Northwest National Laboratory. http://www.pnnl.gov/main/publications/external/technical_reports/PNNL-22760.pdf.
-!
-!Thornton B.A., M.I. Rosenberg, E.E. Richman, W. Wang, Y. Xie, J. Zhang, H. Cho, VV Mendon, R.A. Athalye, and B. Liu. 2011. Achieving
-!the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010. PNNL-20405. Richland, WA: Pacific Northwest National
-!Laboratory. https://www.energycodes.gov/sites/default/files/documents/BECP_Energy_Cost_Savings_STD2010_May2011_v00.pdf.
-!
-!
-! WeatherFile: USA_MN_Rochester.Intl.AP.726440_TMY3.epw
-
-
-
-
-! GPARM parameters as input:
-! Case = ASHRAE901_ApartmentMidRise_STD2019_Rochester
-! SelectedCase =
-! annual_run = no
-! slab_gtp = National_ApartmentMidRise_ASHRAE901_STD2016_Zone6A_res_MN-Rochester-MN.gtp
-! avg_oa_tempt_ip = 43.475
-! maxdiff_oa_tempt_ip = 60.3
-! ext_wall_type = SteelFramedWall
-! res_ext_wall_ufactor = 0.278234887
-! roof_type = MetalDeckRoof
-! res_roof_ufactor = 0.181704416
-! roof_emissEHity = 0.9
-! roof_solar_absorp = 0.7
-! res_window =
-! economizer = NO ECONOMIZER
-! skip_economizer_control = Yes
-! avg_oa_tempt = 6.375
-! maxdiff_oa_tempt = 33.5
-! infil = 0.00056896
-! LPD_apartment_hardwired = 6.45834625
-! LPD_apartment_plugin = 2.906255813
-! LPD_office = 7.965293709
-! LPD_corridor = 5.295843925
-! oa_apartment = 0.000294087
-! oa_office = 0.000431773
-! oa_corridor = 0.000304781
-! exterior_light_watts = 1651
-! door_infil = 0.327531218
-! frac_ofpk = 0.131
-! economizer_lockout = LockoutWithHeating
-! BLDG_ELEVATORS_LIGHTS_FAN_SCH = ELEV_LIGHT_FAN_SCH_ADD_DF
-! BLDG_ELEVATORS_LIGHTS_FAN_POWER = 63
-! EQP_OFF_SCH = EQP_OFF_SCH_ADV
-! pv_generator = no
-! pv_surface_area = 0
-! STD189_overhang = no
-! swh_et = 1
-! swh_ua = 2.012559766
-! ext_lgt_sch = Exterior_Lgt_ALWAYS_ON
-! LTG_SCH_SET = LTG_SET_STD2013
-! wwr = 0.2
-! HTGSETP_OFF_SCH = HTGSETP_OFF_SCH_NO_OPTIMUM
-! CLGSETP_OFF_SCH = CLGSETP_OFF_SCH_No_Optimum
-! pipe_heat_loss_Gapts = 87
-! pipe_heat_loss_Mapts = 73
-! skip_EMSprogram = yes
-! Wfile_TMY3 = USA_MN_Rochester.Intl.AP.726440_TMY3.epw
-! loadProfile = No
-! Door_Switch_Enabled_Thermostat_Reset = TRUE
-! receptacle_ctrl_occ_reduction_frac = 0.92575
-! receptacle_ctrl_unocc_reduction_frac = 0.6625
-! CodeName = ASHRAE90.1_STD2019
-! CZ_City_Old = Burlington
-! CZ_Label = 6A
-! Split_GSW_ERV = Yes
-! Split_GNW_ERV = Yes
-! Split_GNE_ERV = Yes
-! Split_GN1_ERV = Yes
-! Split_GN2_ERV = Yes
-! Split_GS1_ERV = Yes
-! Split_GS2_ERV = Yes
-! Split_MSW_ERV = Yes
-! Split_MNW_ERV = Yes
-! Split_MSE_ERV = Yes
-! Split_MNE_ERV = Yes
-! Split_MN1_ERV = Yes
-! Split_MN2_ERV = Yes
-! Split_MS1_ERV = Yes
-! Split_MS2_ERV = Yes
-! Split_TSW_ERV = Yes
-! Split_TNW_ERV = Yes
-! Split_TSE_ERV = Yes
-! Split_TNE_ERV = Yes
-! Split_TN1_ERV = Yes
-! Split_TN2_ERV = Yes
-! Split_TS1_ERV = Yes
-! Split_TS2_ERV = Yes
-! Split_GSW_ERV_power = 69.299602
-! Split_GNW_ERV_power = 68.6212775
-! Split_GNE_ERV_power = 68.6212775
-! Split_GN1_ERV_power = 68.6212775
-! Split_GN2_ERV_power = 68.6212775
-! Split_GS1_ERV_power = 68.6212775
-! Split_GS2_ERV_power = 68.6212775
-! Split_MSW_ERV_power = 68.621241625
-! Split_MNW_ERV_power = 68.621241625
-! Split_MSE_ERV_power = 68.621241625
-! Split_MNE_ERV_power = 68.621241625
-! Split_MN1_ERV_power = 68.621241625
-! Split_MN2_ERV_power = 68.621241625
-! Split_MS1_ERV_power = 68.621241625
-! Split_MS2_ERV_power = 68.621241625
-! Split_TSW_ERV_power = 68.6212775
-! Split_TNW_ERV_power = 68.6212775
-! Split_TSE_ERV_power = 68.6212775
-! Split_TNE_ERV_power = 68.6212775
-! Split_TN1_ERV_power = 68.6212775
-! Split_TN2_ERV_power = 68.6212775
-! Split_TS1_ERV_power = 68.6212775
-! Split_TS2_ERV_power = 68.6212775
-! office_standby_mode = Yes
-! res_window_u_factor = 0.36
-! res_window_shgc = 0.37
-! resLSG = 1.1
-! AnalysisPurpose = ProgressIndicator
-! AnalysisCodeName = ASHRAE901
-! AnalysisCodeYear = 2019
-! AnalysisAmendment = NoneAmend
-! AnalysisPrototype = ApartmentMidRise
-! AnalysisScope = National
-! AnalysisState = National
-! AnalysisClimateZone = 6A
-! AnalysisCity = USA_MN_Rochester
-! var_Ffactor_IP = 0.434
-! var_Cfactor_IP = 0.063
-! APT_SWH_flow = 3.66e-06
-! VT_Elec_Wheater = No
-
-
-
-! specify overhang_pf for 1891 codes
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: VERSION ===========
-
- Version,9.0;
-
-
-!- =========== ALL OBJECTS IN CLASS: BUILDING ===========
-
- Building,
- ApartmentMidRise, !- Name
- 0, !- North Axis {deg}
- City, !- Terrain
- 0.04, !- Loads Convergence Tolerance Value
- 0.4, !- Temperature Convergence Tolerance Value {deltaC}
- FullExterior, !- Solar Distribution
- 25, !- Maximum Number of Warmup Days
- 6; !- Minimum Number of Warmup Days
-
-!- =========== ALL OBJECTS IN CLASS: TIMESTEP IN HOUR ===========
-
- Timestep,6;
-
- ConvergenceLimits,
- 1, !- Minimum System Timestep {minutes}
- 20; !- Maximum HVAC Iterations
-
-!- =========== ALL OBJECTS IN CLASS: INSIDE CONVECTION ALGORITHM ===========
-
- SurfaceConvectionAlgorithm:Inside,TARP;
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE CONVECTION ALGORITHM ===========
-
- SurfaceConvectionAlgorithm:Outside,TARP;
-
-!- =========== ALL OBJECTS IN CLASS: SOLUTION ALGORITHM ===========
-
- HeatBalanceAlgorithm,ConductionTransferFunction;
-
-!- =========== ALL OBJECTS IN CLASS: RUN CONTROL ===========
-
- SimulationControl,
- Yes, !- Do Zone Sizing Calculation
- Yes, !- Do System Sizing Calculation
- No, !- Do Plant Sizing Calculation
-No, !- Run Simulation for Sizing Periods
-YES; !- Run Simulation for Weather File Run Periods
-
-!- =========== ALL OBJECTS IN CLASS: RUNPERIOD ===========
-
- RunPeriod,
- , !- Name
- 1, !- Begin Month
- 1, !- Begin Day of Month
- , !- Begin Year
- 12, !- End Month
- 31, !- End Day of Month
- , !- End Year
- Sunday, ! Day of Week for Start Day
- No, !- Use Weather File Holidays and Special Days
- No, !- Use Weather File Daylight Saving Period
- Yes, !- Apply Weekend Holiday Rule
- Yes, !- Use Weather File Rain Indicators
- Yes; !- Use Weather File Snow Indicators
-
-!- =========== ALL OBJECTS IN CLASS: SPECIALDAYPERIOD ===========
-
- RunPeriodControl:SpecialDays,
- New Year's Day, !- Name
- Jan 1, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- MLK Day, !- Name
- 3rd Monday in January, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Presidents Day, !- Name
- 3rd Monday in February, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Memorial Day, !- Name
- Last Monday in May, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Independence Day, !- Name
- July 4, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Labor day, !- Name
- 1st Monday in September, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Columbus Day, !- Name
- 2nd Monday in October, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Thanksgiving, !- Name
- 4th Thursday in November,!- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Veterans Day, !- Name
- November 11, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Christmas, !- Name
- December 25, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-!- =========== ALL OBJECTS IN CLASS: DAYLIGHTSAVINGPERIOD ===========
-
- RunPeriodControl:DaylightSavingTime,
- 2nd Sunday in March, !- Start Date
- 1st Sunday in November; !- End Date
-
-!- =========== ALL OBJECTS IN CLASS: LOCATION ===========
-! Site:Location and design-day objects created by:
-! ../../_p.bin/ddy2idf /projects/bigsim/weather/EnergyPlus/tmy3.new/all/USA_MN_Rochester.Intl.AP.726440_TMY3.ddy
-!
-Site:Location,
- Rochester International Arpt_MN_USA Design_Conditions, !- Site:Location Name
- 43.90, !- Latitude {N+ S-}
- -92.50, !- Longitude {W- E+}
- -6.00, !- Time Zone Relative to GMT {GMT+/-}
- 398.00; !- Elevation {m}
-
-SizingPeriod:DesignDay,
- Rochester International Arpt Ann Htg 99.6% Condns DB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -26.2, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- -26.2, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily WetBulb Temperature Range {deltaC}
- 96634., !- Barometric Pressure {Pa}
- 5.7, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 310, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
-SizingPeriod:DesignDay,
- Rochester International Arpt Ann Clg .4% Condns DB=>MWB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 31.2, !- Maximum Dry-Bulb Temperature {C}
- 10.6, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 23.1, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily WetBulb Temperature Range {deltaC}
- 96634., !- Barometric Pressure {Pa}
- 6.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 200, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.404, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 2.226; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
-
-
-!- =========== ALL OBJECTS IN CLASS: WATER MAINS TEMPERATURES ===========
-
-
- Site:WaterMainsTemperature,
- Correlation, !- Calculation Method
- , !- Temperature Schedule Name
-6.375, !- Annual average outdoor air temperature {C}
-33.5; !- Maximum difference in monthly average outdoor air temperatures {C}
-
-
-!- =========== ALL OBJECTS IN CLASS: Site:GroundTemperature:FCfactorMethod ===========
-
-Site:GroundTemperature:FCfactorMethod,
-7.4, !- January Ground Temperature {C}
--0.0, !- February Ground Temperature {C}
--7.6, !- March Ground Temperature {C}
--12.6, !- April Ground Temperature {C}
--7.7, !- May Ground Temperature {C}
-0.3, !- June Ground Temperature {C}
-7.0, !- July Ground Temperature {C}
-14.2, !- August Ground Temperature {C}
-19.2, !- September Ground Temperature {C}
-20.9, !- October Ground Temperature {C}
-20.0, !- November Ground Temperature {C}
-15.4; !- December Ground Temperature {C}
-
-
-
-!- =========== Opaque Constructions ===========
-
-
-!
-!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR ===========
-
- Material,
- Std Wood 6inch, !- Name
- MediumSmooth, !- Roughness
- 0.15, !- Thickness {m}
- 0.12, !- Conductivity {W/m-K}
- 540.0000, !- Density {kg/m3}
- 1210, !- Specific Heat {J/kg-K}
- 0.9000000, !- Thermal Absorptance
- 0.7000000, !- Solar Absorptance
- 0.7000000; !- Visible Absorptance
-
- Material,
- AC02 Acoustic Ceiling, !- Name
- MediumSmooth, !- Roughness
- 1.2700000E-02, !- Thickness {m}
- 5.7000000E-02, !- Conductivity {W/m-K}
- 288.0000, !- Density {kg/m3}
- 1339.000, !- Specific Heat {J/kg-K}
- 0.9000000, !- Thermal Absorptance
- 0.7000000, !- Solar Absorptance
- 0.2000000; !- Visible Absorptance
-
- Material,
- F07 25mm stucco, !- Name
- Smooth, !- Roughness
- 0.0254, !- Thickness {m}
- 0.72, !- Conductivity {W/m-K}
- 1856, !- Density {kg/m3}
- 840, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material,
- F08 Metal surface, !- Name
- Smooth, !- Roughness
- 0.0008, !- Thickness {m}
- 45.28, !- Conductivity {W/m-K}
- 7824, !- Density {kg/m3}
- 500; !- Specific Heat {J/kg-K}
-
- Material,
- F08 Metal roof surface, !- Name
- Smooth, !- Roughness
- 0.0008, !- Thickness {m}
- 45.28, !- Conductivity {W/m-K}
- 7824, !- Density {kg/m3}
- 500, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- F12 Asphalt shingles, !- Name
- VeryRough, !- Roughness
- 0.0032, !- Thickness {m}
- 0.04, !- Conductivity {W/m-K}
- 1120, !- Density {kg/m3}
- 1260, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- F13 Built-up roofing, !- Name
- Rough, !- Roughness
- 0.0095, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 1120, !- Density {kg/m3}
- 1460, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- G01 13mm gypsum board, !- Name
- Smooth, !- Roughness
- 0.0127, !- Thickness {m}
- 0.1600, !- Conductivity {W/m-K}
- 800.0000, !- Density {kg/m3}
- 1090.0000, !- Specific Heat {J/kg-K}
- 0.9000, !- Absorptance:Thermal
- 0.7000, !- Absorptance:Solar
- 0.5000; !- Absorptance:Visible
-
- Material,
- G01 16mm gypsum board, !- Name
- MediumSmooth, !- Roughness
- 0.0159, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 1090; !- Specific Heat {J/kg-K}
-
- Material,
- G02 16mm plywood, !- Name
- Smooth, !- Roughness
- 0.0159, !- Thickness {m}
- 0.12, !- Conductivity {W/m-K}
- 544, !- Density {kg/m3}
- 1210; !- Specific Heat {J/kg-K}
-
- Material,
- M14 150mm heavyweight concrete roof, !- Name
- MediumRough, !- Roughness
- 0.1524, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
-
- Material,
- 100mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1016, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
-
- Material,
- 200mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 100mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1016, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 150mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1524, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 200mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- M10 200mm concrete block wall, !- Name
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 0.72, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- M10 200mm concrete block basement wall, !- Name
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 1.326, !- Conductivity {W/m-K}
- 1842, !- Density {kg/m3}
- 912; !- Specific Heat {J/kg-K}
-
-
-
-
-
-
-
- Material:NoMass,
- CP02 CARPET PAD, !- Name
- VeryRough, !- Roughness
- 0.21648, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.8; !- Visible Absorptance
-
-
- Material:NoMass,
- Air_Wall_Material, !- Name
- Rough, !- Roughness
- 0.2079491, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7; !- Solar Absorptance
-
-
- Material:NoMass,
- Nonres_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Absorptance:Thermal
- 0.7, !- Absorptance:Solar
- 0.7; !- Absorptance:Visible
-
- Material:NoMass,
- Res_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 5.30668495131472,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
- Material:NoMass,
- Nonres_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Res_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 3.21036415428069,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
- Material:NoMass,
- Nonres_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Res_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
-
-
-
- Material:NoMass,
- Std Opaque Door Panel, !- Name
- MediumRough, !- Roughness
- 0.123456790123457, !- (corresponds to default RSI-0.12327 or R-0.7) Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION ===========
-
- Construction,
- InteriorFurnishings, !- Name
- Std Wood 6inch; !- Outside Layer
-
- Construction,
- Air_Wall, !- Name
- Air_Wall_Material; !- Outside Layer
-
- Construction,
- DropCeiling, !- Name
- AC02 Acoustic Ceiling; !- Outside Layer
-
- Construction,
- OpaqueDoor, !- Name
- Std Opaque Door Panel; !- Outside Layer
-
- Construction,
- AtticRoofDeck, !- Name
- F12 Asphalt shingles, !- Outside Layer
- G02 16mm plywood; !- Layer 2
-
- Construction,
- int_wall, !- Name
- G01 13mm gypsum board, !- Outside Layer
- G01 13mm gypsum board; !- Layer 2
-
- Construction,
- ext_slab_8in_with_carpet,!- Name
- 200mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- ext_slab_8in, !- Name
- 200mm Normalweight concrete floor; !- Outside Layer
-
- Construction,
- ext_slab_6in_with_carpet,!- Name
- 150mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- ext_slab_6in, !- Name
- 150mm Normalweight concrete floor; !- Outside Layer
-
- Construction,
- int_slab_floor, !- Name
- 100mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- int_slab_ceiling, !- Name
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor; !- Layer 2
-
- Construction,
- basement_wall, !- Name
- M10 200mm concrete block basement wall; !- Outside Layer
-
- Construction,
- int_wood_floor, !- Name
- AC02 Acoustic Ceiling, !- Outside Layer
- G02 16mm plywood, !- Layer 2
- CP02 CARPET PAD; !- Layer 3
-
- Construction,
- ext_soffit_floor, !- Name
- G02 16mm plywood; !- Outside Layer
-
- Construction,
- nonres_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Nonres_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
- Construction,
- res_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Res_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
- Construction,
- semiheated_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Semiheated_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
-
-
- Construction,
- nonres_ext_wall, !- Name
- F07 25mm stucco, !- Outside Layer
- G01 16mm gypsum board, !- Layer #2
- Nonres_Exterior_Wall_Insulation, !- Layer #3
- G01 16mm gypsum board; !- Layer #4
-
-
- Construction,
- res_ext_wall, !- Name
- F07 25mm stucco, !- Outside Layer
- G01 16mm gypsum board, !- Layer #1
- Res_Exterior_Wall_Insulation, !- Layer #2
- G01 16mm gypsum board; !- Layer #3
-
-
- Construction,
- semiheated_ext_wall, !- Name
- F07 25mm stucco, !- Outside Layer
- G01 16mm gypsum board, !- Layer #1
- Semiheated_Exterior_Wall_Insulation, !- Layer #2
- G01 16mm gypsum board; !- Layer #3
-
-
- Construction,
- nonres_floor, !- Name
- Nonres_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- res_floor, !- Name
- Res_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- semiheated_floor, !- Name
- Semiheated_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- nonres_floor_ceiling, !- Name - reverse ordered layers for nonres_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Nonres_Floor_Insulation; !- Layer #2
-
- Construction,
- res_floor_ceiling, !- Name - reverse ordered layers for res_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Res_Floor_Insulation; !- Layer #2
-
- Construction,
- semiheated_floor_ceiling, !- Name - reverse ordered layers for semiheated_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Semiheated_Floor_Insulation; !- Layer #2
-
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM ===========
-
-WindowMaterial:SimpleGlazingSystem,
- Res Window Glazing Layer, !- Name
- 2.0441736, !- U-Factor {W/m2-K}
- 0.37, !- Solar Heat Gain Coefficient
- 0.407; !- Visible Transmittance
-Construction,
- ResWindow_U__SHGC_0.37, !- Name
- Res Window Glazing Layer; !- Outside Layer
-
-!- =========== ALL OBJECTS IN CLASS: ZONE ===========
-
-
- Construction:FfactorGroundFloor,
- gFloorC_Ffactor, !- Name
- 0.751254, !- F-Factor
- 77.65845299, !- Area
- 3.352599999999999; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorN1A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 11.5818; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorN2A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 11.581800000000001; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorNEA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 19.201400000000003; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorNWA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000001, !- Area
- 19.2014; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorS1A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328, !- Area
- 11.5818; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorS2A_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328, !- Area
- 11.581800000000001; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorSWA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328, !- Area
- 19.2014; !- PerimeterExposed
-
- Construction:FfactorGroundFloor,
- gGFloorSEA_Ffactor, !- Name
- 0.751254, !- F-Factor
- 88.24868328000002, !- Area
- 19.2014; !- PerimeterExposed
-
-
-
-
-
- Zone,
- G SW Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 0, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G NW Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- Office, !- Name
- 0, !- Direction of Relative North {deg}
- 34.7455054899131, !- X Origin {m}
- 0, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G NE Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 34.7455054899131, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G N1 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 11.5818351633044, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G N2 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 23.1636703266088, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G S1 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 11.5818351633044, !- X Origin {m}
- 0, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G S2 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 23.1636703266088, !- X Origin {m}
- 0, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M SW Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 0, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M NW Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M SE Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 34.7455054899131, !- X Origin {m}
- 0, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M NE Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 34.7455054899131, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M N1 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 11.5818351633044, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M N2 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 23.1636703266088, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M S1 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 11.5818351633044, !- X Origin {m}
- 0, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M S2 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 23.1636703266088, !- X Origin {m}
- 0, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T SW Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 0, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T NW Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T SE Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 34.7455054899131, !- X Origin {m}
- 0, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T NE Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 34.7455054899131, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T N1 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 11.5818351633044, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T N2 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 23.1636703266088, !- X Origin {m}
- 9.29594664423115, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T S1 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 11.5818351633044, !- X Origin {m}
- 0, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T S2 Apartment, !- Name
- 0, !- Direction of Relative North {deg}
- 23.1636703266088, !- X Origin {m}
- 0, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- T Corridor, !- Name
- , !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 7.61962839691078, !- Y Origin {m}
- 9.14355407629293, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- G Corridor, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 7.61962839691078, !- Y Origin {m}
- 0, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-
-
- Zone,
- M Corridor, !- Name
- , !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 7.61962839691078, !- Y Origin {m}
- 3.04785135876431, !- Z Origin {m}
- 1, !- Type
- 1; !- Multiplier
-
-!- =========== ALL OBJECTS IN CLASS: ZONE LIST ===========
-
-
- ZoneList,
- Mid Floor List, !- Name
- M SW Apartment, !- Zone 1 Name
- M NW Apartment, !- Zone 2 Name
- M SE Apartment, !- Zone 3 Name
- M NE Apartment, !- Zone 4 Name
- M N1 Apartment, !- Zone 5 Name
- M N2 Apartment, !- Zone 6 Name
- M S1 Apartment, !- Zone 7 Name
- M S2 Apartment, !- Zone 8 Name
- M Corridor; !- Zone 9 Name
-
-!- =========== ALL OBJECTS IN CLASS: ZONE GROUP ===========
-
-
- ZoneGroup,
- Middle Floors, !- Name
- Mid Floor List, !- Zone List Name
- 2; !- Zone List Multiplier
-
-!- =========== ALL OBJECTS IN CLASS: SURFACEGEOMETRY ===========
-
-
- GlobalGeometryRules,
- LowerLeftCorner, !- Starting Vertex Position
- CW, !- Vertex Entry Direction
- Relative; !- Coordinate System
-
-!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER ===========
-
-
- BuildingSurface:Detailed,
- g SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Office, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Office, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor SWA, !- Name
- Floor, !- Surface Type
- gGFloorSWA_Ffactor, !- Construction Name
- G SW Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor SEA, !- Name
- Floor, !- Surface Type
- gGFloorSEA_Ffactor, !- Construction Name
- Office, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor N1A, !- Name
- Floor, !- Surface Type
- gGFloorN1A_Ffactor, !- Construction Name
- G N1 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor N2A, !- Name
- Floor, !- Surface Type
- gGFloorN2A_Ffactor, !- Construction Name
- G N2 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor S1A, !- Name
- Floor, !- Surface Type
- gGFloorS1A_Ffactor, !- Construction Name
- G S1 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor S2A, !- Name
- Floor, !- Surface Type
- gGFloorS2A_Ffactor, !- Construction Name
- G S2 Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor NEA, !- Name
- Floor, !- Surface Type
- gGFloorNEA_Ffactor, !- Construction Name
- G NE Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g GFloor NWA, !- Name
- Floor, !- Surface Type
- gGFloorNWA_Ffactor, !- Construction Name
- G NW Apartment, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Office, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor SWA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor SEA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor N1A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor N2A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor S1A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor S2A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor NEA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t GFloor NWA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- t GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof SWA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof SEA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof N1A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof N2A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof S1A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof S2A, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof NEA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof NWA, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NWall N1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M N1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NWall N2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M N2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m WWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m WWall NWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EWall NEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M NE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor SWA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor SEA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor N1A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor N2A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor S1A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor S2A, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor NEA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m GFloor NWA, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m GFloor NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin SWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M SW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin SWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin SEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M SE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin SEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin N1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M N1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin N1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin N2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M N2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin N2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin S1A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M S1 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin S1A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin S2A, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M S2 Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin S2A, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin NEA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M NE Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin NEA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceilin NWA, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M NW Apartment, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceilin NWA, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SWall SWA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SWall S1A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M S1 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SWall S2A, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M S2 Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SWall SEA, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M SE Apartment, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676318,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676318,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- M Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327341,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341,1.676318,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- M Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676318,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m Floor C, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- M Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- m Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,1.676318,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676318,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676318,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- T Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327341,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341,1.676318,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Roof C, !- Name
- Roof, !- Surface Type
- res_roof, !- Construction Name
- T Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676318,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t Floor C, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- T Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- t Floor C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,1.676318,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g WWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,1.676318,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676318,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EWall C, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- G Corridor, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 46.327341,0.000000,0, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341,1.676318,0; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Ceiling C, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- G Corridor, !- Zone Name
- Surface, !- Outside Boundary Condition
- g Ceiling C, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,1.676318,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341,0.000000,3.047851; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g Floor C, !- Name
- Floor, !- Surface Type
- gFloorC_Ffactor, !- Construction Name
- G Corridor, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341,0.000000,0.000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341,1.676318,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,1.676318,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- Office, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- g SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- G NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- G Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- m SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- M NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- M Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NIWall SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EIWALL SWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T SW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T S1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NIWall S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EIWALL S1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T S2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NIWall S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EIWALL S2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T S2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T SE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t NIWall SEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T SE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,7.619628,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 0.000000,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 0.000000,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SIWall NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EIWALL NWA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T NW Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T N1 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SIWall N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EIWALL N1A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N1 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T N2 Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SIWall N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t EIWALL N2A, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T N2 Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T NE Apartment, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 11.581835,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,7.619628,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,7.619628,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
- BuildingSurface:Detailed,
- t SIWall NEA, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- T NE Apartment, !- Zone Name
- Zone, !- Outside Boundary Condition
- T Corridor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- autocalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.000000,0.000000,0.000000, !- X,Y,Z ==> Vertex 1 {m}
- 0.000000,0.000000,3.047851, !- X,Y,Z ==> Vertex 2 {m}
- 11.581835,0.000000,3.047851, !- X,Y,Z ==> Vertex 3 {m}
- 11.581835,0.000000,0.000000; !- X,Y,Z ==> Vertex 4 {m}
-
-!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER:SUB ===========
- FenestrationSurface:Detailed,
-GWindow1 S SWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 S S1A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 S S2A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 S SEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 S SWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 S S1A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 S S2A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 S SEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 S SWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t SWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 S S1A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t SWall S1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 S S2A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t SWall S2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 S SEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t SWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-2.895, !- Vertex 1 X-coordinate {m}
-0, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-2.895, !- Vertex 2 X-coordinate {m}
-0, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-8.68601049868766, !- Vertex 3 X-coordinate {m}
-0, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-8.68601049868766, !- Vertex 4 X-coordinate {m}
-0, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-
-
- FenestrationSurface:Detailed,
-GWindow1 W NWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-5.678, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-5.678, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-1.868, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-1.868, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 W SWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-5.678, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-5.678, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-1.868, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-1.868, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 W NWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-5.678, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-5.678, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-1.868, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-1.868, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 W SWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-5.678, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-5.678, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-1.868, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-1.868, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 W NWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t WWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-5.678, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-5.678, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-1.868, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-1.868, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 W SWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t WWall SWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-0, !- Vertex 1 X-coordinate {m}
-5.678, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-0, !- Vertex 2 X-coordinate {m}
-5.678, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-0, !- Vertex 3 X-coordinate {m}
-1.868, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-0, !- Vertex 4 X-coordinate {m}
-1.868, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-
-
-FenestrationSurface:Detailed,
-GWindow1 E NEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.9049, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.9049, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-5.7149, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-5.7149, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 E SEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.9049, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.9049, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-5.7149, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-5.7149, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 E NEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.9049, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.9049, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-5.7149, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-5.7149, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 E SEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.9049, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.9049, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-5.7149, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-5.7149, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 E NEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t EWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.9049, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.9049, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-5.7149, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-5.7149, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 E SEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t EWall SEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-11.5818, !- Vertex 1 X-coordinate {m}
-1.9049, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-11.5818, !- Vertex 2 X-coordinate {m}
-1.9049, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-11.5818, !- Vertex 3 X-coordinate {m}
-5.7149, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-11.5818, !- Vertex 4 X-coordinate {m}
-5.7149, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-
-
- FenestrationSurface:Detailed,
-GWindow1 N NWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 N N1A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 N N2A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-GWindow1 N NEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-g NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 N NWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 N N1A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 N N2A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-MWindow1 N NEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-m NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 N NWA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t NWall NWA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 N N1A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t NWall N1A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 N N2A, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t NWall N2A, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-FenestrationSurface:Detailed,
-TWindow1 N NEA, !- Name
-Window, !- Surface Type
-ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
-t NWall NEA, !- Building Surface Name
-, !- Outside Boundary Condition Object
-autocalculate, !- View Factor to Ground
-, !- Frame and Divider Name
-1, !- Multiplier
-4, !- Number of Vertices
-8.686, !- Vertex 1 X-coordinate {m}
-7.6196, !- Vertex 1 Y-coordinate {m}
-0.954, !- Vertex 1 Z-coordinate {m}
-8.686, !- Vertex 2 X-coordinate {m}
-7.6196, !- Vertex 2 Y-coordinate {m}
-2.1732, !- Vertex 2 Z-coordinate {m}
-2.89498950131234, !- Vertex 3 X-coordinate {m}
-7.6196, !- Vertex 3 Y-coordinate {m}
-2.1732, !- Vertex 3 Z-coordinate {m}
-2.89498950131234, !- Vertex 4 X-coordinate {m}
-7.6196, !- Vertex 4 Y-coordinate {m}
-0.954; !- Vertex 4 Z-coordinate {m}
-
-
-
- FenestrationSurface:Detailed,
- Entrance Door, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name of the Surface
- g EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- autocalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1, !- Multiplier
- 4, !- Number of Vertices
- 46.327341000000,0.050800000000,0.025400000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341000000,0.050800000000,2.133500000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341000000,1.625500000000,2.133500000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341000000,1.625500000000,0.025400000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- MWindow14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name
- m EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- autocalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1, !- Multiplier
- 4, !- Number of Vertices
- 46.327341000000,0.381000000000,0.954000000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341000000,0.381000000000,2.173100000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341000000,1.295300000000,2.173100000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341000000,1.295300000000,0.954000000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- TWindow14, !- Name
- Window, !- Surface Type
- ResWindow_U__SHGC_0.37, !- Construction Name
- t EWall C, !- Building Surface Name
- , !- Outside Boundary Condition Object
- autocalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1, !- Multiplier
- 4, !- Number of Vertices
- 46.327341000000,0.381000000000,0.954000000000, !- X,Y,Z ==> Vertex 1 {m}
- 46.327341000000,0.381000000000,2.173100000000, !- X,Y,Z ==> Vertex 2 {m}
- 46.327341000000,1.295300000000,2.173100000000, !- X,Y,Z ==> Vertex 3 {m}
- 46.327341000000,1.295300000000,0.954000000000; !- X,Y,Z ==> Vertex 4 {m}
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER:INTERNALMASS ===========
-
- InternalMass,
- G InternalMass SWA, !- Name
- InteriorFurnishings, !- Construction Name
- G SW Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass NWA, !- Name
- InteriorFurnishings, !- Construction Name
- G NW Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass SEA, !- Name
- InteriorFurnishings, !- Construction Name
- Office, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass NEA, !- Name
- InteriorFurnishings, !- Construction Name
- G NE Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass N1A, !- Name
- InteriorFurnishings, !- Construction Name
- G N1 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass N2A, !- Name
- InteriorFurnishings, !- Construction Name
- G N2 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass S1A, !- Name
- InteriorFurnishings, !- Construction Name
- G S1 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- G InternalMass S2A, !- Name
- InteriorFurnishings, !- Construction Name
- G S2 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass SWA, !- Name
- InteriorFurnishings, !- Construction Name
- M SW Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass NWA, !- Name
- InteriorFurnishings, !- Construction Name
- M NW Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass SEA, !- Name
- InteriorFurnishings, !- Construction Name
- M SE Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass NEA, !- Name
- InteriorFurnishings, !- Construction Name
- M NE Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass N1A, !- Name
- InteriorFurnishings, !- Construction Name
- M N1 Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass N2A, !- Name
- InteriorFurnishings, !- Construction Name
- M N2 Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass S1A, !- Name
- InteriorFurnishings, !- Construction Name
- M S1 Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- M InternalMass S2A, !- Name
- InteriorFurnishings, !- Construction Name
- M S2 Apartment, !- Zone Name
- 176.498545342438; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass SWA, !- Name
- InteriorFurnishings, !- Construction Name
- T SW Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass NWA, !- Name
- InteriorFurnishings, !- Construction Name
- T NW Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass SEA, !- Name
- InteriorFurnishings, !- Construction Name
- T SE Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass NEA, !- Name
- InteriorFurnishings, !- Construction Name
- T NE Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass N1A, !- Name
- InteriorFurnishings, !- Construction Name
- T N1 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass N2A, !- Name
- InteriorFurnishings, !- Construction Name
- T N2 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass S1A, !- Name
- InteriorFurnishings, !- Construction Name
- T S1 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
- InternalMass,
- T InternalMass S2A, !- Name
- InteriorFurnishings, !- Construction Name
- T S2 Apartment, !- Zone Name
- 88.249272671219; !- Surface Area {m2}
-
-!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE ===========
-
- ScheduleTypeLimits,
- Fraction, !- Name
- 0, !- Lower Limit Value
- 1, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- Temperature, !- Name
- -100, !- Lower Limit Value
- 100, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- Any Number; !- Name
-
- ScheduleTypeLimits,
- COMPACT HVAC Any Number; !- Name
-
-!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT ===========
-
- Schedule:Compact,
- OCC_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 7:00,1.0, !- Field 3
- Until: 8:00,0.85, !- Field 5
- Until: 9:00,0.39, !- Field 7
- Until: 16:00,0.25, !- Field 9
- Until: 17:00,0.3, !- Field 11
- Until: 18:00,0.52, !- Field 13
- Until: 21:00,0.87, !- Field 15
- Until: 24:00,1.0; !- Field 17
-
- Schedule:Compact,
- OCC_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.0, !- Field 3
- Until: 12:00,1.0, !- Field 5
- Until: 13:00,0.5, !- Field 7
- Until: 17:00,1.0, !- Field 9
- Until: 24:00,0.0, !- Field 11
- For AllOtherDays, !- Field 13
- Until: 24:00,0.0; !- Field 14
-
-
- Schedule:Compact,
- OCC_OFF_w_SB_SCH, !-Name
- Fraction, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 0,
- Until: 02:00, 0,
- Until: 03:00, 0,
- Until: 04:00, 0,
- Until: 05:00, 0,
- Until: 06:00, 0,
- Until: 07:00, 0,
- Until: 08:00, 0,
- Until: 09:00, 1,
- Until: 10:00, 1,
- Until: 11:00, 1,
- Until: 12:00, 1,
- Until: 13:00, 0,
- Until: 14:00, 1,
- Until: 15:00, 0,
- Until: 16:00, 1,
- Until: 17:00, 1,
- Until: 18:00, 0,
- Until: 19:00, 0,
- Until: 20:00, 0,
- Until: 21:00, 0,
- Until: 22:00, 0,
- Until: 23:00, 0,
- Until: 24:00, 0,
- For: AllOtherDays,
- Until: 01:00, 0,
- Until: 02:00, 0,
- Until: 03:00, 0,
- Until: 04:00, 0,
- Until: 05:00, 0,
- Until: 06:00, 0,
- Until: 07:00, 0,
- Until: 08:00, 0,
- Until: 09:00, 0,
- Until: 10:00, 0,
- Until: 11:00, 0,
- Until: 12:00, 0,
- Until: 13:00, 0,
- Until: 14:00, 0,
- Until: 15:00, 0,
- Until: 16:00, 0,
- Until: 17:00, 0,
- Until: 18:00, 0,
- Until: 19:00, 0,
- Until: 20:00, 0,
- Until: 21:00, 0,
- Until: 22:00, 0,
- Until: 23:00, 0,
- Until: 24:00, 0;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Schedule:Compact,
- LTG_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 4:00,0.011316031, !- Field 3
- Until: 5:00,0.033948092, !- Field 5
- Until: 6:00,0.0735542, !- Field 7
- Until: 7:00,0.079212215, !- Field 9
- Until: 8:00,0.0735542, !- Field 11
- Until: 9:00,0.033948092, !- Field 13
- Until: 15:00,0.022632061,!- Field 15
- Until: 16:00,0.039606108,!- Field 17
- Until: 17:00,0.079212215,!- Field 19
- Until: 18:00,0.113160307,!- Field 21
- Until: 19:00,0.152766415,!- Field 23
- Until: 21:00,0.181056492,!- Field 25
- Until: 22:00,0.124476338,!- Field 27
- Until: 23:00,0.067896184,!- Field 29
- Until: 24:00,0.028290077;!- Field 31
-
- Schedule:Compact,
- LTG_COR_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.53144; !- Field 3
-
- Schedule:Compact,
- LTG_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 2
- Until: 24:00,1, !- Field 3
- For: WinterDesignDay, !- Field 5
- Until: 24:00,0, !- Field 6
- For: Weekdays, !- Field 8
- Until: 8:00,0.18, !- Field 9
- Until: 12:00,0.76932, !- Field 11
- Until: 13:00,0.68384, !- Field 13
- Until: 17:00,0.76932, !- Field 15
- Until: 24:00,0.18, !- Field 17
- For: AllOtherDays, !- Field 19
- Until: 24:00,0.18; !- Field 20
-
-
-
-
-
-
- Schedule:Compact,
- EQP_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 1:00,0.45, !- Field 3
- Until: 2:00,0.41, !- Field 5
- Until: 3:00,0.39, !- Field 7
- Until: 5:00,0.38, !- Field 9
- Until: 6:00,0.43, !- Field 11
- Until: 7:00,0.54, !- Field 13
- Until: 8:00,0.65, !- Field 15
- Until: 9:00,0.66, !- Field 17
- Until: 10:00,0.67, !- Field 19
- Until: 11:00,0.69, !- Field 21
- Until: 12:00,0.70, !- Field 23
- Until: 13:00,0.69, !- Field 25
- Until: 14:00,0.66, !- Field 27
- Until: 15:00,0.65, !- Field 29
- Until: 16:00,0.68, !- Field 31
- Until: 17:00,0.80, !- Field 33
- Until: 19:00,1.0, !- Field 35
- Until: 20:00,0.93, !- Field 37
- Until: 21:00,0.89, !- Field 39
- Until: 22:00,0.85, !- Field 41
- Until: 23:00,0.71, !- Field 43
- Until: 24:00,0.58; !- Field 45
-
-
-
- Schedule:Compact,
- EQP_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 19
- Until: 24:00,1, !- Field 20
- For: WinterDesignDay, !- Field 21
- Until: 24:00,0, !- Field 22
- For: Weekdays, !- Field 2
- Until: 7:00,0.218625, !- Field 3
- Until: 8:00,0.33125, !- Field 5
- Until: 12:00,0.92575, !- Field 7
- Until: 13:00,0.870205, !- Field 9
- Until: 17:00,0.92575, !- Field 11
- Until: 18:00,0.33125, !- Field 13
- Until: 24:00,0.218625, !- Field 15
- For AllOtherDays, !- Field 17
- Until: 24:00,0.218625; !- Field 18
-
- Schedule:Compact,
- INF_APT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- INF_OFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- INF_COR_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- INFIL_Door_Opening_SCH, !- Name
- fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 06:00,0.0, !- Field 3
- Until: 07:00,0.131, !- Field 5
- Until: 08:00,1.0, !- Field 7
- Until: 17:00,0.131, !- Field 9
- Until: 18:00,1.0, !- Field 11
- Until: 22:00,0.131, !- Field 13
- Until: 24:00,0.0; !- Field 15
-
- Schedule:Compact,
- HTGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00,21.1; !- Field 3
-
- Schedule:Compact,
- CLGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00,24; !- Field 3
-
-Schedule:Compact,
- S HTGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 21.1; !- Field 4
-
-Schedule:Compact,
- S CLGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 24; !- Field 4
-
-Schedule:Compact,
- N HTGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 21.1; !- Field 4
-
-Schedule:Compact,
- N CLGSETP_APT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR:AllDays, !- Field 2
- UNTIL: 24:00, !- Field 3
- 24; !- Field 4
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_NO_OPTIMUM, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay, !- Field 2
- UNTIL: 7:00,15.6, !- Field 3
- UNTIL: 8:00,18.3, !- Field 5
- UNTIL:17:00,21.1, !- Field 7
- UNTIL: 18:00,18.3, !- Field 9
- UNTIL: 24:00,15.6, !- Field 11
- FOR: Weekdays, !- Field 13
- UNTIL: 7:00,15.6, !- Field 14
- UNTIL: 8:00,21.1, !- Field 16
- UNTIL:17:00,21.1, !- Field 18
- UNTIL: 18:00,18.3, !- Field 20
- UNTIL: 24:00,15.6, !- Field 22
- FOR: SummerDesignDay AllOtherDays, !- Field 24
- UNTIL: 24:00,15.6; !- Field 25
-
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_NO_OPTIMUM_W_SB, !-Name
- Temperature, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 15.6,
- Until: 02:00, 15.6,
- Until: 03:00, 15.6,
- Until: 04:00, 15.6,
- Until: 05:00, 15.6,
- Until: 06:00, 15.6,
- Until: 07:00, 15.6,
- Until: 08:00, 21.1,
- Until: 09:00, 21.1,
- Until: 10:00, 21.1,
- Until: 11:00, 21.1,
- Until: 12:00, 21.1,
- Until: 13:00, 20.5444444444444,
- Until: 14:00, 21.1,
- Until: 15:00, 20.5444444444444,
- Until: 16:00, 21.1,
- Until: 17:00, 21.1,
- Until: 18:00, 18.3,
- Until: 19:00, 15.6,
- Until: 20:00, 15.6,
- Until: 21:00, 15.6,
- Until: 22:00, 15.6,
- Until: 23:00, 15.6,
- Until: 24:00, 15.6,
- For: WinterDesignDay,
- Until: 7:00,15.6,
- Until: 8:00,18.3,
- Until:17:00,21.1,
- Until: 18:00,18.3,
- Until: 24:00,15.6,
- For: SummerDesignDay,
- Until: 24:00,15.6,
- For: AllOtherDays,
- Until: 01:00, 15.6,
- Until: 02:00, 15.6,
- Until: 03:00, 15.6,
- Until: 04:00, 15.6,
- Until: 05:00, 15.6,
- Until: 06:00, 15.6,
- Until: 07:00, 15.6,
- Until: 08:00, 15.6,
- Until: 09:00, 15.6,
- Until: 10:00, 15.6,
- Until: 11:00, 15.6,
- Until: 12:00, 15.6,
- Until: 13:00, 15.6,
- Until: 14:00, 15.6,
- Until: 15:00, 15.6,
- Until: 16:00, 15.6,
- Until: 17:00, 15.6,
- Until: 18:00, 15.6,
- Until: 19:00, 15.6,
- Until: 20:00, 15.6,
- Until: 21:00, 15.6,
- Until: 22:00, 15.6,
- Until: 23:00, 15.6,
- Until: 24:00, 15.6;
-
- Schedule:Compact,
- HTGSETP_OFF_SCH_YES_OPTIMUM, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: WinterDesignDay, !- Field 2
- UNTIL: 7:00,15.6, !- Field 3
- UNTIL: 8:00,18.3, !- Field 5
- UNTIL: 17:00,21.1, !- Field 7
- UNTIL: 18:00,18.3, !- Field 9
- UNTIL: 24:00,15.6, !- Field 11
- FOR: Weekdays, !- Field 13
- UNTIL: 7:00,15.6, !- Field 14
- UNTIL: 8:00,17.8, !- Field 16
- UNTIL: 9:00,20.0, !- Field 18
- UNTIL: 17:00,21.1, !- Field 20
- UNTIL: 18:00,18.3, !- Field 22
- UNTIL: 24:00,15.6, !- Field 24
- FOR: SummerDesignDay AllOtherDays, !- Field 26
- UNTIL: 24:00,15.6; !- Field 27
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_NO_OPTIMUM, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL:17:00,24, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,29.4, !- Field 14
- UNTIL: 8:00,24, !- Field 16
- UNTIL:17:00,24, !- Field 18
- UNTIL: 18:00,26.7, !- Field 20
- UNTIL: 24:00,29.4, !- Field 22
- FOR: WinterDesignDay AllOtherDays, !- Field 24
- UNTIL: 24:00,29.4; !- Field 25
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_NO_OPTIMUM_W_SB, !-Name
- Temperature, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 29.4,
- Until: 02:00, 29.4,
- Until: 03:00, 29.4,
- Until: 04:00, 29.4,
- Until: 05:00, 29.4,
- Until: 06:00, 29.4,
- Until: 07:00, 29.4,
- Until: 08:00, 23.9,
- Until: 09:00, 23.9,
- Until: 10:00, 23.9,
- Until: 11:00, 23.9,
- Until: 12:00, 23.9,
- Until: 13:00, 24.4555555555556,
- Until: 14:00, 23.9,
- Until: 15:00, 24.4555555555556,
- Until: 16:00, 23.9,
- Until: 17:00, 23.9,
- Until: 18:00, 26.7,
- Until: 19:00, 29.4,
- Until: 20:00, 29.4,
- Until: 21:00, 29.4,
- Until: 22:00, 29.4,
- Until: 23:00, 29.4,
- Until: 24:00, 29.4,
- For: SummerDesignDay,
- Until: 7:00,29.4,
- Until: 8:00,26.7,
- Until:17:00,23.9,
- Until: 18:00,26.7,
- Until: 24:00,29.4,
- For: WinterDesignDay,
- Until: 24:00,29.4,
- For: AllOtherDays,
- Until: 01:00, 29.4,
- Until: 02:00, 29.4,
- Until: 03:00, 29.4,
- Until: 04:00, 29.4,
- Until: 05:00, 29.4,
- Until: 06:00, 29.4,
- Until: 07:00, 29.4,
- Until: 08:00, 29.4,
- Until: 09:00, 29.4,
- Until: 10:00, 29.4,
- Until: 11:00, 29.4,
- Until: 12:00, 29.4,
- Until: 13:00, 29.4,
- Until: 14:00, 29.4,
- Until: 15:00, 29.4,
- Until: 16:00, 29.4,
- Until: 17:00, 29.4,
- Until: 18:00, 29.4,
- Until: 19:00, 29.4,
- Until: 20:00, 29.4,
- Until: 21:00, 29.4,
- Until: 22:00, 29.4,
- Until: 23:00, 29.4,
- Until: 24:00, 29.4;
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_YES_OPTIMUM, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL: 17:00,24, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,29.4, !- Field 14
- UNTIL: 8:00,27.8, !- Field 16
- UNTIL: 9:00,25.6, !- Field 18
- UNTIL: 17:00,24, !- Field 20
- UNTIL: 18:00,26.7, !- Field 22
- UNTIL: 24:00,29.4, !- Field 24
- FOR: WinterDesignDay AllOtherDays, !- Field 26
- UNTIL: 24:00,29.4; !- Field 27
-
-
-
- Schedule:Compact,
- CLGSETP_OFF_SCH_No_Setback, !- Name
- Temperature, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: SummerDesignDay, !- Field 2
- UNTIL: 7:00,29.4, !- Field 3
- UNTIL: 8:00,26.7, !- Field 5
- UNTIL: 17:00,23.9, !- Field 7
- UNTIL: 18:00,26.7, !- Field 9
- UNTIL: 24:00,29.4, !- Field 11
- FOR:Weekdays, !- Field 13
- UNTIL: 7:00,23.9, !- Field 14
- UNTIL: 8:00,23.9, !- Field 16
- UNTIL:17:00,23.9, !- Field 18
- UNTIL: 18:00,23.9, !- Field 20
- UNTIL: 24:00,23.9, !- Field 22
- FOR: WinterDesignDay AllOtherDays, !- Field 24
- UNTIL: 24:00,23.9; !- Field 25
-
- Schedule:Compact,
- Activity Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,95; !- Field 3
-
- Schedule:Compact,
- All Off, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.0; !- Field 3
-
- Schedule:Compact,
- All On, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- AllOn_Except_DD, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 1
- Until: 24:00,0, !- Field 2
- For: WinterDesignDay, !- Field 3
- Until: 24:00,0, !- Field 4
- For: AllOtherDays, !- Field 5
- Until: 24:00,1; !- Field 6
-
- Schedule:Compact,
- Exterior_Lgt_ALWAYS_ON, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 1, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ZONE CONTROL TYPE SCHED, !- Name
- Control Type, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 5
- Until: 24:00,2, !- Field 6
- For: WinterDesignDay, !- Field 8
- Until: 24:00,1, !- Field 9
- For: Weekdays Weekends Holidays Customday1 Customday2 AllOtherDays, !- Field 2
- Until: 24:00,4; !- Field 3
-
-
-
- Schedule:Compact,
- FAN_OFF_w_SB_SCH, !-Name
- Fraction, !-Schedule Type Limits Name
- Through: 12/31,
- For: Weekdays,
- Until: 01:00, 1,
- Until: 02:00, 1,
- Until: 03:00, 1,
- Until: 04:00, 1,
- Until: 05:00, 1,
- Until: 06:00, 1,
- Until: 07:00, 1,
- Until: 08:00, 1,
- Until: 09:00, 1,
- Until: 10:00, 1,
- Until: 11:00, 1,
- Until: 12:00, 1,
- Until: 13:00, 0,
- Until: 14:00, 1,
- Until: 15:00, 0,
- Until: 16:00, 1,
- Until: 17:00, 1,
- Until: 18:00, 1,
- Until: 19:00, 1,
- Until: 20:00, 1,
- Until: 21:00, 1,
- Until: 22:00, 1,
- Until: 23:00, 1,
- Until: 24:00, 1,
- For: AllOtherDays,
- Until: 01:00, 1,
- Until: 02:00, 1,
- Until: 03:00, 1,
- Until: 04:00, 1,
- Until: 05:00, 1,
- Until: 06:00, 1,
- Until: 07:00, 1,
- Until: 08:00, 1,
- Until: 09:00, 1,
- Until: 10:00, 1,
- Until: 11:00, 1,
- Until: 12:00, 1,
- Until: 13:00, 1,
- Until: 14:00, 1,
- Until: 15:00, 1,
- Until: 16:00, 1,
- Until: 17:00, 1,
- Until: 18:00, 1,
- Until: 19:00, 1,
- Until: 20:00, 1,
- Until: 21:00, 1,
- Until: 22:00, 1,
- Until: 23:00, 1,
- Until: 24:00, 1;
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 4, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,4; !- Field 3
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 0, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0; !- Field 3
-
- Schedule:Compact,
- APT_DHW_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 1:00,0.08, !- Field 3
- UNTIL: 2:00,0.04, !- Field 5
- UNTIL: 3:00,0.01, !- Field 7
- UNTIL: 4:00,0.01, !- Field 9
- UNTIL: 5:00,0.04, !- Field 11
- UNTIL: 6:00,0.27, !- Field 13
- UNTIL: 7:00,0.94, !- Field 15
- UNTIL: 8:00,1.00, !- Field 17
- UNTIL: 9:00,0.96, !- Field 19
- UNTIL: 10:00,0.84, !- Field 21
- UNTIL: 11:00,0.76, !- Field 23
- UNTIL: 12:00,0.61, !- Field 25
- UNTIL: 13:00,0.53, !- Field 27
- UNTIL: 14:00,0.47, !- Field 29
- UNTIL: 15:00,0.41, !- Field 31
- UNTIL: 16:00,0.47, !- Field 33
- UNTIL: 17:00,0.55, !- Field 35
- UNTIL: 18:00,0.73, !- Field 37
- UNTIL: 19:00,0.86, !- Field 39
- UNTIL: 20:00,0.82, !- Field 41
- UNTIL: 21:00,0.75, !- Field 43
- UNTIL: 22:00,0.61, !- Field 45
- UNTIL: 23:00,0.53, !- Field 47
- UNTIL: 24:00,0.29; !- Field 49
-
- Schedule:Compact,
- Hot Water Setpoint Temp Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- Constant Mains Temp Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 24:00,12.0; !- Field 3
-
- Schedule:Compact,
- COMPACT HVAC-ALWAYS 18.3333338190008, !- Name
- COMPACT HVAC Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,18.3333338190008; !- Field 3
-
- Schedule:Compact,
- Exterior_Ltg_Sch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 07:00,1.0, !- Field 3
- Until: 19:00,0.0, !- Field 5
- Until: 24:00,1.0; !- Field 7
-
-
-
- SCHEDULE:COMPACT,
- BLDG_ELEVATORS, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: WinterDesignDay, !- Field 2
- Until: 24:00,0.05, !- Field 3
- For: SummerDesignDay, !- Field 5
- Until: 24:00,0.5, !- Field 6
- For: Allotherdays, !- Field 8
- Until: 04:00,0.05, !- Field 9
- Until: 05:00,0.10, !- Field 11
- Until: 06:00,0.20, !- Field 13
- Until: 07:00,0.40, !- Field 15
- Until: 09:00,0.50, !- Field 17
- Until: 10:00,0.35, !- Field 19
- Until: 16:00,0.15, !- Field 21
- Until: 17:00,0.35, !- Field 23
- Until: 19:00,0.50, !- Field 25
- Until: 21:00,0.40, !- Field 27
- Until: 22:00,0.30, !- Field 29
- Until: 23:00,0.20, !- Field 31
- Until: 24:00,0.10; !- Field 33
-
- Schedule:Compact,
- ELEV_LIGHT_FAN_SCH_24_7, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ELEV_LIGHT_FAN_SCH_ADD_DF, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: WinterDesignDay, !- Field 2
- Until: 24:00,0.05, !- Field 3
- For: SummerDesignDay, !- Field 5
- Until: 24:00,0.5, !- Field 6
- For: Allotherdays, !- Field 8
- Until: 04:00,0.05, !- Field 9
- Until: 05:00,0.10, !- Field 11
- Until: 06:00,0.20, !- Field 13
- Until: 07:00,0.40, !- Field 15
- Until: 09:00,0.50, !- Field 17
- Until: 10:00,0.35, !- Field 19
- Until: 16:00,0.15, !- Field 21
- Until: 17:00,0.35, !- Field 23
- Until: 19:00,0.50, !- Field 25
- Until: 21:00,0.40, !- Field 27
- Until: 22:00,0.30, !- Field 29
- Until: 23:00,0.20, !- Field 31
- Until: 24:00,0.10; !- Field 33
-
-!- =========== ALL OBJECTS IN CLASS: PEOPLE ===========
-
- People,
- Occup_GSW, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_GNW, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_Office, !- Name
- Office, !- Zone or ZoneList Name
- OCC_OFF_w_SB_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_GNE, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_GN1, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_GN2, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_GS1, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_GS2, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MSW, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MNW, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MSE, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MNE, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MN1, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MN2, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MS1, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_MS2, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TSW, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TNW, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TSE, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TNE, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TN1, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TN2, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TS1, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
- People,
- Occup_TS2, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- OCC_APT_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.5, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 1, !- Fraction Radiant
- autosize, !- Sensible Heat Fraction
- Activity Schedule; !- Activity Level Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: LIGHTS ===========
-
- Lights,
- Lighting_hardwired_GSW, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GNW, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_Office, !- Name
- Office, !- Zone or ZoneList Name
- LTG_OFF_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 7.965293709, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GNE, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GN1, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GN2, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GS1, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GS2, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MSW, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MNW, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MSE, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MNE, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MN1, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MN2, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MS1, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MS2, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TSW, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TNW, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TSE, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TNE, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TN1, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TN2, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TS1, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TS2, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 6.45834625, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_GC, !- Name
- G Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_MC, !- Name
- M Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_hardwired_TC, !- Name
- T Corridor, !- Zone or ZoneList Name
- LTG_COR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_hardwired Level {W}
- 5.295843925,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GSW, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GNW, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
-
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GNE, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GN1, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GN2, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GS1, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_GS2, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MSW, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MNW, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MSE, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MNE, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MN1, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MN2, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MS1, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_MS2, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TSW, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TNW, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TSE, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TNE, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TN1, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TN2, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TS1, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lighting_plugin_TS2, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- LTG_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting_plugin Level {W}
- 2.906255813, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.6000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsPlugIn, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
-!- =========== ALL OBJECTS IN CLASS: ELECTRIC EQUIPMENT ===========
-
- ElectricEquipment,
- Plug_GSW, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_GNW, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_Office, !- Name
- Office, !- Zone or ZoneList Name
- EQP_OFF_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_GNE, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_GN1, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_GN2, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_GS1, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_GS2, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MSW, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MNW, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MSE, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MNE, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MN1, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MN2, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MS1, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_MS2, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TSW, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TNW, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TSE, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TNE, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TN1, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TN2, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TS1, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Plug_TS2, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- EQP_APT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Design Level {W}
- 6.67, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.5, !- Fraction Radiant
- 0, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
-
-
- ElectricEquipment,
- G Corridor_Elevators_Equip, !- Name
- G Corridor, !- Zone or ZoneList Name
- BLDG_ELEVATORS, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 16054.9450549451, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.0000, !- Fraction Radiant
- 0.9500, !- Fraction Lost
- ElevatorLift; !- End-Use Subcategory
-
-
-
- ElectricEquipment,
- Elevators_Lights_Fan, !- Name
- G Corridor, !- Zone or ZoneList Name
- ELEV_LIGHT_FAN_SCH_ADD_DF, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 63, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.0000, !- Fraction Radiant
- 0.9500, !- Fraction Lost
- ElevatorLightsFan; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: INFILTRATION ===========
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GSW, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GNW, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_Office, !- Name
- Office, !- Zone or ZoneList Name
- INF_OFF_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GNE, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GN1, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GN2, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GS1, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GS2, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MSW, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MNW, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MSE, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MNE, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MN1, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MN2, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MS1, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MS2, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_SW, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_NW, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_SE, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_NE, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000226844352, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_TN1, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_TN2, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_TS1, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_TS2, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- INF_APT_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000162551872, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_GC, !- Name
- G Corridor, !- Zone or ZoneList Name
- INF_COR_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Door_Infil_GC, !- Name
- G Corridor, !- Zone or ZoneList Name
- INFIL_Door_Opening_SCH, !- Schedule Name
- Flow/Zone, !- Design Flow Rate Calculation Method
- 0.327531218, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- , !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 1.0, !- Constant Term Coefficient
- 0.0, !- Temperature Term Coefficient
- 0.0, !- Velocity Term Coefficient
- 0.0; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_MC, !- Name
- M Corridor, !- Zone or ZoneList Name
- INF_COR_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Infil_TC, !- Name
- T Corridor, !- Zone or ZoneList Name
- INF_COR_SCH, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- 0, !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 6.6170048e-05, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
-!- =========== ALL OBJECTS IN CLASS: EXTERIORLIGHTS ===========
-
- Exterior:Lights,
- Facade Lighting, !- Name
- Exterior_Lgt_ALWAYS_ON, !- Schedule Name
- 1651, !- Design Level {W}
- AstronomicalClock, !- Control Option
- General; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: SIZING PARAMETERS ===========
-
- Sizing:Parameters,
- 1.2, !- Heating Sizing Factor
- 1.2, !- Cooling Sizing Factor
- 6; !- Timesteps in Averaging Window
-
-!- =========== ALL OBJECTS IN CLASS: ZONE SIZING ===========
-
- Sizing:Zone,
- G SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 0.0070800009, !- Outdoor Air Flow per Person {m3/s-person}
- 0.0003048006, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000431773, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- G S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA G S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA G S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- M S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA M S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA M S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T SW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T SW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T SW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T NW Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T NW Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T NW Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T SE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T SE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T SE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T NE Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T NE Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T NE Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T N1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T N1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T N1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T N2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T N2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T N2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T S1 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T S1 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T S1 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- T S2 Apartment, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA T S2 Apartment, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Cooling Minimum Air Flow {m3/s}
- 0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- 0; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA T S2 Apartment, !- Name
- Flow/Area, !- Outdoor Air Method
- 7.08000089882824E-03, !- Outdoor Air Flow per Person {m3/s-person}
- 0.000294087,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: SYSTEM SIZING ===========
-
- Sizing:System,
- Split GSW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split GNW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split Office, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split GNE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split GN1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split GN2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split GS1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split GS2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MSW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MNW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MSE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MNE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MN1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MN2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MS1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split MS2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TSW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TNW, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TSE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TNE, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TN1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TN2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TS1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- Split TS2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- autosize, !- Design Outdoor Air Flow Rate {m3/s}
- 1, !- Central Heating Maximum System Air Flow Ratio
- 7, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 11, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 40, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC ===========
-
-
- Curve:Biquadratic,
- Split DX Coil Cap-FT, !- Name
- 0.766955E+00, !- Coefficient1 Constant
- 0.107757E-01, !- Coefficient2 x
- -0.414720E-04, !- Coefficient3 x**2
- 0.134964E-02, !- Coefficient4 y
- -0.261144E-03, !- Coefficient5 y**2
- 0.457488E-03, !- Coefficient6 x*y
- 12.77778, !- Minimum Value of x
- 23.88889, !- Maximum Value of x
- 23.88889, !- Minimum Value of y
- 46.11111; !- Maximum Value of y
-
-
-
- Curve:Biquadratic,
- Split DX Coil EIR-FT, !- Name
- 0.7915314928, !- Coefficient1 Constant
- 0, !- Coefficient2 x
- -.00054871, !- Coefficient3 x**2
- 0.000949448, !- Coefficient4 y
- 0.000165481745, !- Coefficient5 y**2
- 0.0002782677, !- Coefficient6 x*y
- 12.77778, !- Minimum Value of x
- 23.88889, !- Maximum Value of x
- 23.88889, !- Minimum Value of y
- 46.11111; !- Maximum Value of y
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC ===========
-
-
- Curve:Quadratic,
- Split DX Coil Cap-FF, !- Name
- 0.8, !- Coefficient1 Constant
- 0.2, !- Coefficient2 x
- 0, !- Coefficient3 x**2
- 0.5, !- Minimum Value of x
- 1.5; !- Maximum Value of x
-
-
-
- Curve:Quadratic,
- Split DX Coil EIR-FF, !- Name
- 1.1552, !- Coefficient1 Constant
- -0.1808, !- Coefficient2 x
- 0.0256, !- Coefficient3 x**2
- 0.5, !- Minimum Value of x
- 1.5; !- Maximum Value of x
-
-
-
- Curve:Quadratic,
- Split DX Coil PLF, !- Name
- 0.85, !- Coefficient1 Constant
- 0.15, !- Coefficient2 x
- 0, !- Coefficient3 x**2
- 0, !- Minimum Value of x
- 1; !- Maximum Value of x
-
-!- =========== ALL OBJECTS IN CLASS: BRANCH LIST ===========
-
- BranchList,
- Split GSW Branches, !- Name
- Split GSW Main Branch; !- Branch 1 Name
-
- BranchList,
- Split GNW Branches, !- Name
- Split GNW Main Branch; !- Branch 1 Name
-
- BranchList,
- Split Office Branches, !- Name
- Split Office Main Branch;!- Branch 1 Name
-
- BranchList,
- Split GNE Branches, !- Name
- Split GNE Main Branch; !- Branch 1 Name
-
- BranchList,
- Split GN1 Branches, !- Name
- Split GN1 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split GN2 Branches, !- Name
- Split GN2 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split GS1 Branches, !- Name
- Split GS1 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split GS2 Branches, !- Name
- Split GS2 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MSW Branches, !- Name
- Split MSW Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MNW Branches, !- Name
- Split MNW Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MSE Branches, !- Name
- Split MSE Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MNE Branches, !- Name
- Split MNE Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MN1 Branches, !- Name
- Split MN1 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MN2 Branches, !- Name
- Split MN2 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MS1 Branches, !- Name
- Split MS1 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split MS2 Branches, !- Name
- Split MS2 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TSW Branches, !- Name
- Split TSW Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TNW Branches, !- Name
- Split TNW Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TSE Branches, !- Name
- Split TSE Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TNE Branches, !- Name
- Split TNE Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TN1 Branches, !- Name
- Split TN1 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TN2 Branches, !- Name
- Split TN2 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TS1 Branches, !- Name
- Split TS1 Main Branch; !- Branch 1 Name
-
- BranchList,
- Split TS2 Branches, !- Name
- Split TS2 Main Branch; !- Branch 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: BRANCH ===========
-
- Branch,
- Split GSW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GSW OA System, !- Component 1 Name
- Split GSW Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GSW Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GSW Furnace with DX Cooling, !- Component 2 Name
- Split GSW Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GSW Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split GNW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GNW OA System, !- Component 1 Name
- Split GNW Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GNW Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GNW Furnace with DX Cooling, !- Component 2 Name
- Split GNW Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GNW Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split Office Main Branch,!- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split Office OA System, !- Component 1 Name
- Split Office Air Loop Inlet, !- Component 1 Inlet Node Name
- Split Office Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split Office Furnace with DX Cooling, !- Component 2 Name
- Split Office Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split Office Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split GNE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GNE OA System, !- Component 1 Name
- Split GNE Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GNE Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GNE Furnace with DX Cooling, !- Component 2 Name
- Split GNE Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GNE Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split GN1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GN1 OA System, !- Component 1 Name
- Split GN1 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GN1 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GN1 Furnace with DX Cooling, !- Component 2 Name
- Split GN1 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GN1 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split GN2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GN2 OA System, !- Component 1 Name
- Split GN2 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GN2 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GN2 Furnace with DX Cooling, !- Component 2 Name
- Split GN2 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GN2 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split GS1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GS1 OA System, !- Component 1 Name
- Split GS1 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GS1 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GS1 Furnace with DX Cooling, !- Component 2 Name
- Split GS1 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GS1 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split GS2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split GS2 OA System, !- Component 1 Name
- Split GS2 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split GS2 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split GS2 Furnace with DX Cooling, !- Component 2 Name
- Split GS2 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split GS2 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MSW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MSW OA System, !- Component 1 Name
- Split MSW Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MSW Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MSW Furnace with DX Cooling, !- Component 2 Name
- Split MSW Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MSW Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MNW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MNW OA System, !- Component 1 Name
- Split MNW Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MNW Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MNW Furnace with DX Cooling, !- Component 2 Name
- Split MNW Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MNW Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MSE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MSE OA System, !- Component 1 Name
- Split MSE Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MSE Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MSE Furnace with DX Cooling, !- Component 2 Name
- Split MSE Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MSE Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MNE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MNE OA System, !- Component 1 Name
- Split MNE Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MNE Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MNE Furnace with DX Cooling, !- Component 2 Name
- Split MNE Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MNE Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MN1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MN1 OA System, !- Component 1 Name
- Split MN1 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MN1 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MN1 Furnace with DX Cooling, !- Component 2 Name
- Split MN1 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MN1 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MN2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MN2 OA System, !- Component 1 Name
- Split MN2 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MN2 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MN2 Furnace with DX Cooling, !- Component 2 Name
- Split MN2 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MN2 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MS1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MS1 OA System, !- Component 1 Name
- Split MS1 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MS1 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MS1 Furnace with DX Cooling, !- Component 2 Name
- Split MS1 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MS1 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split MS2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split MS2 OA System, !- Component 1 Name
- Split MS2 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split MS2 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split MS2 Furnace with DX Cooling, !- Component 2 Name
- Split MS2 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split MS2 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TSW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TSW OA System, !- Component 1 Name
- Split TSW Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TSW Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TSW Furnace with DX Cooling, !- Component 2 Name
- Split TSW Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TSW Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TNW Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TNW OA System, !- Component 1 Name
- Split TNW Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TNW Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TNW Furnace with DX Cooling, !- Component 2 Name
- Split TNW Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TNW Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TSE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TSE OA System, !- Component 1 Name
- Split TSE Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TSE Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TSE Furnace with DX Cooling, !- Component 2 Name
- Split TSE Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TSE Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TNE Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TNE OA System, !- Component 1 Name
- Split TNE Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TNE Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TNE Furnace with DX Cooling, !- Component 2 Name
- Split TNE Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TNE Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TN1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TN1 OA System, !- Component 1 Name
- Split TN1 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TN1 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TN1 Furnace with DX Cooling, !- Component 2 Name
- Split TN1 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TN1 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TN2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TN2 OA System, !- Component 1 Name
- Split TN2 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TN2 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TN2 Furnace with DX Cooling, !- Component 2 Name
- Split TN2 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TN2 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TS1 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TS1 OA System, !- Component 1 Name
- Split TS1 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TS1 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TS1 Furnace with DX Cooling, !- Component 2 Name
- Split TS1 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TS1 Air Loop Outlet; !- Component 2 Outlet Node Name
-
- Branch,
- Split TS2 Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- Split TS2 OA System, !- Component 1 Name
- Split TS2 Air Loop Inlet,!- Component 1 Inlet Node Name
- Split TS2 Mixed Air Outlet, !- Component 1 Outlet Node Name
- AirLoopHVAC:Unitary:Furnace:HeatCool, !- Component 2 Object Type
- Split TS2 Furnace with DX Cooling, !- Component 2 Name
- Split TS2 Mixed Air Outlet, !- Component 2 Inlet Node Name
- Split TS2 Air Loop Outlet; !- Component 2 Outlet Node Name
-
-!- =========== ALL OBJECTS IN CLASS: AIR PRIMARY LOOP ===========
-
- AirLoopHVAC,
- Split GSW, !- Name
- , !- Controller List Name
- Split GSW Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GSW Branches, !- Branch List Name
- , !- Connector List Name
- Split GSW Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GSW Return Air Outlet, !- Demand Side Outlet Node Name
- Split GSW Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GSW Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split GNW, !- Name
- , !- Controller List Name
- Split GNW Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GNW Branches, !- Branch List Name
- , !- Connector List Name
- Split GNW Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GNW Return Air Outlet, !- Demand Side Outlet Node Name
- Split GNW Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GNW Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split Office, !- Name
- , !- Controller List Name
- Split Office Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split Office Branches, !- Branch List Name
- , !- Connector List Name
- Split Office Air Loop Inlet, !- Supply Side Inlet Node Name
- Split Office Return Air Outlet, !- Demand Side Outlet Node Name
- Split Office Supply Path Inlet, !- Demand Side Inlet Node Names
- Split Office Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split GNE, !- Name
- , !- Controller List Name
- Split GNE Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GNE Branches, !- Branch List Name
- , !- Connector List Name
- Split GNE Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GNE Return Air Outlet, !- Demand Side Outlet Node Name
- Split GNE Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GNE Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split GN1, !- Name
- , !- Controller List Name
- Split GN1 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GN1 Branches, !- Branch List Name
- , !- Connector List Name
- Split GN1 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GN1 Return Air Outlet, !- Demand Side Outlet Node Name
- Split GN1 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GN1 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split GN2, !- Name
- , !- Controller List Name
- Split GN2 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GN2 Branches, !- Branch List Name
- , !- Connector List Name
- Split GN2 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GN2 Return Air Outlet, !- Demand Side Outlet Node Name
- Split GN2 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GN2 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split GS1, !- Name
- , !- Controller List Name
- Split GS1 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GS1 Branches, !- Branch List Name
- , !- Connector List Name
- Split GS1 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GS1 Return Air Outlet, !- Demand Side Outlet Node Name
- Split GS1 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GS1 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split GS2, !- Name
- , !- Controller List Name
- Split GS2 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split GS2 Branches, !- Branch List Name
- , !- Connector List Name
- Split GS2 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split GS2 Return Air Outlet, !- Demand Side Outlet Node Name
- Split GS2 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split GS2 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MSW, !- Name
- , !- Controller List Name
- Split MSW Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MSW Branches, !- Branch List Name
- , !- Connector List Name
- Split MSW Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MSW Return Air Outlet, !- Demand Side Outlet Node Name
- Split MSW Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MSW Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MNW, !- Name
- , !- Controller List Name
- Split MNW Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MNW Branches, !- Branch List Name
- , !- Connector List Name
- Split MNW Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MNW Return Air Outlet, !- Demand Side Outlet Node Name
- Split MNW Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MNW Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MSE, !- Name
- , !- Controller List Name
- Split MSE Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MSE Branches, !- Branch List Name
- , !- Connector List Name
- Split MSE Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MSE Return Air Outlet, !- Demand Side Outlet Node Name
- Split MSE Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MSE Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MNE, !- Name
- , !- Controller List Name
- Split MNE Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MNE Branches, !- Branch List Name
- , !- Connector List Name
- Split MNE Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MNE Return Air Outlet, !- Demand Side Outlet Node Name
- Split MNE Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MNE Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MN1, !- Name
- , !- Controller List Name
- Split MN1 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MN1 Branches, !- Branch List Name
- , !- Connector List Name
- Split MN1 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MN1 Return Air Outlet, !- Demand Side Outlet Node Name
- Split MN1 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MN1 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MN2, !- Name
- , !- Controller List Name
- Split MN2 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MN2 Branches, !- Branch List Name
- , !- Connector List Name
- Split MN2 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MN2 Return Air Outlet, !- Demand Side Outlet Node Name
- Split MN2 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MN2 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MS1, !- Name
- , !- Controller List Name
- Split MS1 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MS1 Branches, !- Branch List Name
- , !- Connector List Name
- Split MS1 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MS1 Return Air Outlet, !- Demand Side Outlet Node Name
- Split MS1 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MS1 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split MS2, !- Name
- , !- Controller List Name
- Split MS2 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split MS2 Branches, !- Branch List Name
- , !- Connector List Name
- Split MS2 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split MS2 Return Air Outlet, !- Demand Side Outlet Node Name
- Split MS2 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split MS2 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TSW, !- Name
- , !- Controller List Name
- Split TSW Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TSW Branches, !- Branch List Name
- , !- Connector List Name
- Split TSW Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TSW Return Air Outlet, !- Demand Side Outlet Node Name
- Split TSW Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TSW Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TNW, !- Name
- , !- Controller List Name
- Split TNW Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TNW Branches, !- Branch List Name
- , !- Connector List Name
- Split TNW Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TNW Return Air Outlet, !- Demand Side Outlet Node Name
- Split TNW Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TNW Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TSE, !- Name
- , !- Controller List Name
- Split TSE Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TSE Branches, !- Branch List Name
- , !- Connector List Name
- Split TSE Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TSE Return Air Outlet, !- Demand Side Outlet Node Name
- Split TSE Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TSE Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TNE, !- Name
- , !- Controller List Name
- Split TNE Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TNE Branches, !- Branch List Name
- , !- Connector List Name
- Split TNE Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TNE Return Air Outlet, !- Demand Side Outlet Node Name
- Split TNE Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TNE Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TN1, !- Name
- , !- Controller List Name
- Split TN1 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TN1 Branches, !- Branch List Name
- , !- Connector List Name
- Split TN1 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TN1 Return Air Outlet, !- Demand Side Outlet Node Name
- Split TN1 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TN1 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TN2, !- Name
- , !- Controller List Name
- Split TN2 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TN2 Branches, !- Branch List Name
- , !- Connector List Name
- Split TN2 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TN2 Return Air Outlet, !- Demand Side Outlet Node Name
- Split TN2 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TN2 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TS1, !- Name
- , !- Controller List Name
- Split TS1 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TS1 Branches, !- Branch List Name
- , !- Connector List Name
- Split TS1 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TS1 Return Air Outlet, !- Demand Side Outlet Node Name
- Split TS1 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TS1 Air Loop Outlet; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- Split TS2, !- Name
- , !- Controller List Name
- Split TS2 Availability Managers, !- Availability Manager List Name
- autosize, !- Design Supply Air Flow Rate {m3/s}
- Split TS2 Branches, !- Branch List Name
- , !- Connector List Name
- Split TS2 Air Loop Inlet,!- Supply Side Inlet Node Name
- Split TS2 Return Air Outlet, !- Demand Side Outlet Node Name
- Split TS2 Supply Path Inlet, !- Demand Side Inlet Node Names
- Split TS2 Air Loop Outlet; !- Supply Side Outlet Node Names
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLER LIST ===========
-
- AirLoopHVAC:ControllerList,
- Split GSW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GSW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split GNW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GNW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split Office OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split Office OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split GNE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GNE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split GN1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GN1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split GN2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GN2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split GS1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GS1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split GS2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split GS2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MSW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MSW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MNW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MNW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MSE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MSE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MNE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MNE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MN1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MN1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MN2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MN2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MS1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MS1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split MS2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split MS2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TSW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TSW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TNW OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TNW OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TSE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TSE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TNE OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TNE OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TN1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TN1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TN2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TN2 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TS1 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TS1 OA Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- Split TS2 OA System Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- Split TS2 OA Controller; !- Controller 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIR LOOP EQUIPMENT LIST ===========
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GSW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GSW OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GNW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GNW OA Mixing Box; !- Component 1 Name
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split Office OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split Office OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GNE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GNE OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GN1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GN1 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GN2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GN2 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GS1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GS1 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split GS2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split GS2 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MSW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MSW OA Mixing Box; !- Component 1 Name
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MNW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MNW OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MSE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MSE OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MNE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MNE OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MN1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MN1 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MN2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MN2 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MS1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MS1 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split MS2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split MS2 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TSW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TSW OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TNW OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TNW OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TSE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TSE OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TNE OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TNE OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TN1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TN1 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TN2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TN2 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TS1 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TS1 OA Mixing Box; !- Component 1 Name
-
-AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- Split TS2 OA System Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- Split TS2 OA Mixing Box; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR SYSTEM ===========
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GSW OA System, !- Name
- Split GSW OA System Controllers, !- Controller List Name
- Split GSW OA System Equipment, !- Outdoor Air Equipment List Name
- Split GSW Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GNW OA System, !- Name
- Split GNW OA System Controllers, !- Controller List Name
- Split GNW OA System Equipment, !- Outdoor Air Equipment List Name
- Split GNW Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split Office OA System, !- Name
- Split Office OA System Controllers, !- Controller List Name
- Split Office OA System Equipment, !- Outdoor Air Equipment List Name
- Split Office Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GNE OA System, !- Name
- Split GNE OA System Controllers, !- Controller List Name
- Split GNE OA System Equipment, !- Outdoor Air Equipment List Name
- Split GNE Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GN1 OA System, !- Name
- Split GN1 OA System Controllers, !- Controller List Name
- Split GN1 OA System Equipment, !- Outdoor Air Equipment List Name
- Split GN1 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GN2 OA System, !- Name
- Split GN2 OA System Controllers, !- Controller List Name
- Split GN2 OA System Equipment, !- Outdoor Air Equipment List Name
- Split GN2 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GS1 OA System, !- Name
- Split GS1 OA System Controllers, !- Controller List Name
- Split GS1 OA System Equipment, !- Outdoor Air Equipment List Name
- Split GS1 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split GS2 OA System, !- Name
- Split GS2 OA System Controllers, !- Controller List Name
- Split GS2 OA System Equipment, !- Outdoor Air Equipment List Name
- Split GS2 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MSW OA System, !- Name
- Split MSW OA System Controllers, !- Controller List Name
- Split MSW OA System Equipment, !- Outdoor Air Equipment List Name
- Split MSW Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MNW OA System, !- Name
- Split MNW OA System Controllers, !- Controller List Name
- Split MNW OA System Equipment, !- Outdoor Air Equipment List Name
- Split MNW Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MSE OA System, !- Name
- Split MSE OA System Controllers, !- Controller List Name
- Split MSE OA System Equipment, !- Outdoor Air Equipment List Name
- Split MSE Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MNE OA System, !- Name
- Split MNE OA System Controllers, !- Controller List Name
- Split MNE OA System Equipment, !- Outdoor Air Equipment List Name
- Split MNE Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MN1 OA System, !- Name
- Split MN1 OA System Controllers, !- Controller List Name
- Split MN1 OA System Equipment, !- Outdoor Air Equipment List Name
- Split MN1 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MN2 OA System, !- Name
- Split MN2 OA System Controllers, !- Controller List Name
- Split MN2 OA System Equipment, !- Outdoor Air Equipment List Name
- Split MN2 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MS1 OA System, !- Name
- Split MS1 OA System Controllers, !- Controller List Name
- Split MS1 OA System Equipment, !- Outdoor Air Equipment List Name
- Split MS1 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split MS2 OA System, !- Name
- Split MS2 OA System Controllers, !- Controller List Name
- Split MS2 OA System Equipment, !- Outdoor Air Equipment List Name
- Split MS2 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TSW OA System, !- Name
- Split TSW OA System Controllers, !- Controller List Name
- Split TSW OA System Equipment, !- Outdoor Air Equipment List Name
- Split TSW Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TNW OA System, !- Name
- Split TNW OA System Controllers, !- Controller List Name
- Split TNW OA System Equipment, !- Outdoor Air Equipment List Name
- Split TNW Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TSE OA System, !- Name
- Split TSE OA System Controllers, !- Controller List Name
- Split TSE OA System Equipment, !- Outdoor Air Equipment List Name
- Split TSE Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TNE OA System, !- Name
- Split TNE OA System Controllers, !- Controller List Name
- Split TNE OA System Equipment, !- Outdoor Air Equipment List Name
- Split TNE Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TN1 OA System, !- Name
- Split TN1 OA System Controllers, !- Controller List Name
- Split TN1 OA System Equipment, !- Outdoor Air Equipment List Name
- Split TN1 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TN2 OA System, !- Name
- Split TN2 OA System Controllers, !- Controller List Name
- Split TN2 OA System Equipment, !- Outdoor Air Equipment List Name
- Split TN2 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TS1 OA System, !- Name
- Split TS1 OA System Controllers, !- Controller List Name
- Split TS1 OA System Equipment, !- Outdoor Air Equipment List Name
- Split TS1 Availability Managers; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- Split TS2 OA System, !- Name
- Split TS2 OA System Controllers, !- Controller List Name
- Split TS2 OA System Equipment, !- Outdoor Air Equipment List Name
- Split TS2 Availability Managers; !- Availability Manager List Name
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR NODE ===========
-
- OutdoorAir:Node,
- Split GSW Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split GNW Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split Office Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split GNE Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split GN1 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split GN2 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split GS1 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split GS2 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MSW Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MNW Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MSE Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MNE Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MN1 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MN2 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MS1 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split MS2 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TSW Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TNW Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TSE Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TNE Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TN1 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TN2 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TS1 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
- OutdoorAir:Node,
- Split TS2 Cooling Coil Condenser Inlet, !- Name
- -1; !- Height Above Ground {m}
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR INLET NODE LIST ===========
-
- OutdoorAir:NodeList,
- Split GSW Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split GNW Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split Office Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split GNE Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split GN1 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split GN2 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split GS1 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split GS2 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MSW Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MNW Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MSE Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MNE Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MN1 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MN2 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MS1 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split MS2 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TSW Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TNW Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TSE Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TNE Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TN1 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TN2 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TS1 Outside Air Inlet; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- Split TS2 Outside Air Inlet; !- Node or NodeList Name 1
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR MIXER ===========
- OutdoorAir:Mixer,
- Split GSW OA Mixing Box, !- Name
- Split GSW Mixed Air Outlet, !- Mixed Air Node Name
- Split GSW Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GSW Relief Air Outlet, !- Relief Air Stream Node Name
- Split GSW Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split GNW OA Mixing Box, !- Name
- Split GNW Mixed Air Outlet, !- Mixed Air Node Name
- Split GNW Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GNW Relief Air Outlet, !- Relief Air Stream Node Name
- Split GNW Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split Office OA Mixing Box, !- Name
- Split Office Mixed Air Outlet, !- Mixed Air Node Name
- Split Office Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split Office Relief Air Outlet, !- Relief Air Stream Node Name
- Split Office Air Loop Inlet; !- Return Air Stream Node Name
-
- OutdoorAir:Mixer,
- Split GNE OA Mixing Box, !- Name
- Split GNE Mixed Air Outlet, !- Mixed Air Node Name
- Split GNE Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GNE Relief Air Outlet, !- Relief Air Stream Node Name
- Split GNE Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split GN1 OA Mixing Box, !- Name
- Split GN1 Mixed Air Outlet, !- Mixed Air Node Name
- Split GN1 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GN1 Relief Air Outlet, !- Relief Air Stream Node Name
- Split GN1 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split GN2 OA Mixing Box, !- Name
- Split GN2 Mixed Air Outlet, !- Mixed Air Node Name
- Split GN2 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GN2 Relief Air Outlet, !- Relief Air Stream Node Name
- Split GN2 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split GS1 OA Mixing Box, !- Name
- Split GS1 Mixed Air Outlet, !- Mixed Air Node Name
- Split GS1 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GS1 Relief Air Outlet, !- Relief Air Stream Node Name
- Split GS1 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split GS2 OA Mixing Box, !- Name
- Split GS2 Mixed Air Outlet, !- Mixed Air Node Name
- Split GS2 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split GS2 Relief Air Outlet, !- Relief Air Stream Node Name
- Split GS2 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MSW OA Mixing Box, !- Name
- Split MSW Mixed Air Outlet, !- Mixed Air Node Name
- Split MSW Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MSW Relief Air Outlet, !- Relief Air Stream Node Name
- Split MSW Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MNW OA Mixing Box, !- Name
- Split MNW Mixed Air Outlet, !- Mixed Air Node Name
- Split MNW Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MNW Relief Air Outlet, !- Relief Air Stream Node Name
- Split MNW Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MSE OA Mixing Box, !- Name
- Split MSE Mixed Air Outlet, !- Mixed Air Node Name
- Split MSE Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MSE Relief Air Outlet, !- Relief Air Stream Node Name
- Split MSE Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MNE OA Mixing Box, !- Name
- Split MNE Mixed Air Outlet, !- Mixed Air Node Name
- Split MNE Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MNE Relief Air Outlet, !- Relief Air Stream Node Name
- Split MNE Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MN1 OA Mixing Box, !- Name
- Split MN1 Mixed Air Outlet, !- Mixed Air Node Name
- Split MN1 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MN1 Relief Air Outlet, !- Relief Air Stream Node Name
- Split MN1 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MN2 OA Mixing Box, !- Name
- Split MN2 Mixed Air Outlet, !- Mixed Air Node Name
- Split MN2 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MN2 Relief Air Outlet, !- Relief Air Stream Node Name
- Split MN2 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MS1 OA Mixing Box, !- Name
- Split MS1 Mixed Air Outlet, !- Mixed Air Node Name
- Split MS1 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MS1 Relief Air Outlet, !- Relief Air Stream Node Name
- Split MS1 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split MS2 OA Mixing Box, !- Name
- Split MS2 Mixed Air Outlet, !- Mixed Air Node Name
- Split MS2 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split MS2 Relief Air Outlet, !- Relief Air Stream Node Name
- Split MS2 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TSW OA Mixing Box, !- Name
- Split TSW Mixed Air Outlet, !- Mixed Air Node Name
- Split TSW Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TSW Relief Air Outlet, !- Relief Air Stream Node Name
- Split TSW Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TNW OA Mixing Box, !- Name
- Split TNW Mixed Air Outlet, !- Mixed Air Node Name
- Split TNW Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TNW Relief Air Outlet, !- Relief Air Stream Node Name
- Split TNW Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TSE OA Mixing Box, !- Name
- Split TSE Mixed Air Outlet, !- Mixed Air Node Name
- Split TSE Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TSE Relief Air Outlet, !- Relief Air Stream Node Name
- Split TSE Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TNE OA Mixing Box, !- Name
- Split TNE Mixed Air Outlet, !- Mixed Air Node Name
- Split TNE Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TNE Relief Air Outlet, !- Relief Air Stream Node Name
- Split TNE Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TN1 OA Mixing Box, !- Name
- Split TN1 Mixed Air Outlet, !- Mixed Air Node Name
- Split TN1 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TN1 Relief Air Outlet, !- Relief Air Stream Node Name
- Split TN1 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TN2 OA Mixing Box, !- Name
- Split TN2 Mixed Air Outlet, !- Mixed Air Node Name
- Split TN2 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TN2 Relief Air Outlet, !- Relief Air Stream Node Name
- Split TN2 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TS1 OA Mixing Box, !- Name
- Split TS1 Mixed Air Outlet, !- Mixed Air Node Name
- Split TS1 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TS1 Relief Air Outlet, !- Relief Air Stream Node Name
- Split TS1 Air Loop Inlet;!- Return Air Stream Node Name
- OutdoorAir:Mixer,
- Split TS2 OA Mixing Box, !- Name
- Split TS2 Mixed Air Outlet, !- Mixed Air Node Name
- Split TS2 Outside Air Inlet, !- Outdoor Air Stream Node Name
- Split TS2 Relief Air Outlet, !- Relief Air Stream Node Name
- Split TS2 Air Loop Inlet;!- Return Air Stream Node Name
-!- =========== ALL OBJECTS IN CLASS: SYSTEM AVAILABILITY MANAGER LIST ===========
-
- AvailabilityManagerAssignmentList,
- Split GSW Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GSW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split GNW Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GNW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split Office Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split Office Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split GNE Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GNE Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split GN1 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GN1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split GN2 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GN2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split GS1 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GS1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split GS2 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split GS2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MSW Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MSW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MNW Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MNW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MSE Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MSE Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MNE Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MNE Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MN1 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MN1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MN2 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MN2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MS1 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MS1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split MS2 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split MS2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TSW Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TSW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TNW Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TNW Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TSE Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TSE Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TNE Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TNE Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TN1 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TN1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TN2 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TN2 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TS1 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TS1 Availability; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- Split TS2 Availability Managers, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- Split TS2 Availability; !- Availability Manager 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: SYSTEM AVAILABILITY MANAGER:SCHEDULED ===========
-
- AvailabilityManager:Scheduled,
- Split GSW Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split GNW Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split Office Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split GNE Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split GN1 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split GN2 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split GS1 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split GS2 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MSW Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MNW Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MSE Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MNE Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MN1 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MN2 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MS1 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split MS2 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TSW Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TNW Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TSE Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TNE Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TN1 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TN2 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TS1 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
- AvailabilityManager:Scheduled,
- Split TS2 Availability, !- Name
- COMPACT HVAC-ALWAYS 1; !- Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:SINGLE ZONE HEATING & COOLING ===========
-
-SetpointManager:SingleZone:Heating,
- Split GSW Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G SW Apartment, !- Control Zone Name
- G SW Apartment Zone Air Node, !- Zone Node Name
- G SW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GSW Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split GNW Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G NW Apartment, !- Control Zone Name
- G NW Apartment Zone Air Node, !- Zone Node Name
- G NW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GNW Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split Office Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- Office, !- Control Zone Name
- Office Zone Air Node, !- Zone Node Name
- Office Zone Equip Inlet, !- Zone Inlet Node Name
- Split Office Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split GNE Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G NE Apartment, !- Control Zone Name
- G NE Apartment Zone Air Node, !- Zone Node Name
- G NE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GNE Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split GN1 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G N1 Apartment, !- Control Zone Name
- G N1 Apartment Zone Air Node, !- Zone Node Name
- G N1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GN1 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split GN2 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G N2 Apartment, !- Control Zone Name
- G N2 Apartment Zone Air Node, !- Zone Node Name
- G N2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GN2 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split GS1 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G S1 Apartment, !- Control Zone Name
- G S1 Apartment Zone Air Node, !- Zone Node Name
- G S1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GS1 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split GS2 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G S2 Apartment, !- Control Zone Name
- G S2 Apartment Zone Air Node, !- Zone Node Name
- G S2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GS2 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MSW Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M SW Apartment, !- Control Zone Name
- M SW Apartment Zone Air Node, !- Zone Node Name
- M SW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MSW Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MNW Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M NW Apartment, !- Control Zone Name
- M NW Apartment Zone Air Node, !- Zone Node Name
- M NW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MNW Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MSE Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M SE Apartment, !- Control Zone Name
- M SE Apartment Zone Air Node, !- Zone Node Name
- M SE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MSE Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MNE Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M NE Apartment, !- Control Zone Name
- M NE Apartment Zone Air Node, !- Zone Node Name
- M NE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MNE Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MN1 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M N1 Apartment, !- Control Zone Name
- M N1 Apartment Zone Air Node, !- Zone Node Name
- M N1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MN1 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MN2 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M N2 Apartment, !- Control Zone Name
- M N2 Apartment Zone Air Node, !- Zone Node Name
- M N2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MN2 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MS1 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M S1 Apartment, !- Control Zone Name
- M S1 Apartment Zone Air Node, !- Zone Node Name
- M S1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MS1 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split MS2 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M S2 Apartment, !- Control Zone Name
- M S2 Apartment Zone Air Node, !- Zone Node Name
- M S2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MS2 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TSW Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T SW Apartment, !- Control Zone Name
- T SW Apartment Zone Air Node, !- Zone Node Name
- T SW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TSW Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TNW Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T NW Apartment, !- Control Zone Name
- T NW Apartment Zone Air Node, !- Zone Node Name
- T NW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TNW Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TSE Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T SE Apartment, !- Control Zone Name
- T SE Apartment Zone Air Node, !- Zone Node Name
- T SE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TSE Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TNE Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T NE Apartment, !- Control Zone Name
- T NE Apartment Zone Air Node, !- Zone Node Name
- T NE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TNE Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TN1 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T N1 Apartment, !- Control Zone Name
- T N1 Apartment Zone Air Node, !- Zone Node Name
- T N1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TN1 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TN2 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T N2 Apartment, !- Control Zone Name
- T N2 Apartment Zone Air Node, !- Zone Node Name
- T N2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TN2 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TS1 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T S1 Apartment, !- Control Zone Name
- T S1 Apartment Zone Air Node, !- Zone Node Name
- T S1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TS1 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Heating,
- Split TS2 Supply Air Temp Manager - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T S2 Apartment, !- Control Zone Name
- T S2 Apartment Zone Air Node, !- Zone Node Name
- T S2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TS2 Heating Coil Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GSW Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G SW Apartment, !- Control Zone Name
- G SW Apartment Zone Air Node, !- Zone Node Name
- G SW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GSW Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GNW Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G NW Apartment, !- Control Zone Name
- G NW Apartment Zone Air Node, !- Zone Node Name
- G NW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GNW Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split Office Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- Office, !- Control Zone Name
- Office Zone Air Node, !- Zone Node Name
- Office Zone Equip Inlet, !- Zone Inlet Node Name
- Split Office Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GNE Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G NE Apartment, !- Control Zone Name
- G NE Apartment Zone Air Node, !- Zone Node Name
- G NE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GNE Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GN1 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G N1 Apartment, !- Control Zone Name
- G N1 Apartment Zone Air Node, !- Zone Node Name
- G N1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GN1 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GN2 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G N2 Apartment, !- Control Zone Name
- G N2 Apartment Zone Air Node, !- Zone Node Name
- G N2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GN2 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GS1 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G S1 Apartment, !- Control Zone Name
- G S1 Apartment Zone Air Node, !- Zone Node Name
- G S1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GS1 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split GS2 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- G S2 Apartment, !- Control Zone Name
- G S2 Apartment Zone Air Node, !- Zone Node Name
- G S2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split GS2 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MSW Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M SW Apartment, !- Control Zone Name
- M SW Apartment Zone Air Node, !- Zone Node Name
- M SW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MSW Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MNW Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M NW Apartment, !- Control Zone Name
- M NW Apartment Zone Air Node, !- Zone Node Name
- M NW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MNW Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MSE Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M SE Apartment, !- Control Zone Name
- M SE Apartment Zone Air Node, !- Zone Node Name
- M SE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MSE Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MNE Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M NE Apartment, !- Control Zone Name
- M NE Apartment Zone Air Node, !- Zone Node Name
- M NE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MNE Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MN1 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M N1 Apartment, !- Control Zone Name
- M N1 Apartment Zone Air Node, !- Zone Node Name
- M N1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MN1 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MN2 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M N2 Apartment, !- Control Zone Name
- M N2 Apartment Zone Air Node, !- Zone Node Name
- M N2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MN2 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MS1 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M S1 Apartment, !- Control Zone Name
- M S1 Apartment Zone Air Node, !- Zone Node Name
- M S1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MS1 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split MS2 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- M S2 Apartment, !- Control Zone Name
- M S2 Apartment Zone Air Node, !- Zone Node Name
- M S2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split MS2 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TSW Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T SW Apartment, !- Control Zone Name
- T SW Apartment Zone Air Node, !- Zone Node Name
- T SW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TSW Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TNW Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T NW Apartment, !- Control Zone Name
- T NW Apartment Zone Air Node, !- Zone Node Name
- T NW Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TNW Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TSE Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T SE Apartment, !- Control Zone Name
- T SE Apartment Zone Air Node, !- Zone Node Name
- T SE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TSE Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TNE Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T NE Apartment, !- Control Zone Name
- T NE Apartment Zone Air Node, !- Zone Node Name
- T NE Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TNE Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TN1 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T N1 Apartment, !- Control Zone Name
- T N1 Apartment Zone Air Node, !- Zone Node Name
- T N1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TN1 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TN2 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T N2 Apartment, !- Control Zone Name
- T N2 Apartment Zone Air Node, !- Zone Node Name
- T N2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TN2 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TS1 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T S1 Apartment, !- Control Zone Name
- T S1 Apartment Zone Air Node, !- Zone Node Name
- T S1 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TS1 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:SingleZone:Cooling,
- Split TS2 Supply Air Temp Manager - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- T S2 Apartment, !- Control Zone Name
- T S2 Apartment Zone Air Node, !- Zone Node Name
- T S2 Apartment Zone Equip Inlet, !- Zone Inlet Node Name
- Split TS2 Air Loop Outlet; !- Setpoint Node or NodeList Name
-
-
-!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:MIXED AIR ===========
-
-SetpointManager:MixedAir,
- Split GSW Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GSW Air Loop Outlet, !- Reference Setpoint Node Name
- Split GSW Mixed Air Outlet, !- Fan Inlet Node Name
- Split GSW Supply Fan Outlet, !- Fan Outlet Node Name
- Split GSW Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split GNW Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GNW Air Loop Outlet, !- Reference Setpoint Node Name
- Split GNW Mixed Air Outlet, !- Fan Inlet Node Name
- Split GNW Supply Fan Outlet, !- Fan Outlet Node Name
- Split GNW Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split Office Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split Office Air Loop Outlet, !- Reference Setpoint Node Name
- Split Office Mixed Air Outlet, !- Fan Inlet Node Name
- Split Office Supply Fan Outlet, !- Fan Outlet Node Name
- Split Office Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split GNE Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GNE Air Loop Outlet, !- Reference Setpoint Node Name
- Split GNE Mixed Air Outlet, !- Fan Inlet Node Name
- Split GNE Supply Fan Outlet, !- Fan Outlet Node Name
- Split GNE Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split GN1 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GN1 Air Loop Outlet, !- Reference Setpoint Node Name
- Split GN1 Mixed Air Outlet, !- Fan Inlet Node Name
- Split GN1 Supply Fan Outlet, !- Fan Outlet Node Name
- Split GN1 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split GN2 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GN2 Air Loop Outlet, !- Reference Setpoint Node Name
- Split GN2 Mixed Air Outlet, !- Fan Inlet Node Name
- Split GN2 Supply Fan Outlet, !- Fan Outlet Node Name
- Split GN2 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split GS1 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GS1 Air Loop Outlet, !- Reference Setpoint Node Name
- Split GS1 Mixed Air Outlet, !- Fan Inlet Node Name
- Split GS1 Supply Fan Outlet, !- Fan Outlet Node Name
- Split GS1 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split GS2 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split GS2 Air Loop Outlet, !- Reference Setpoint Node Name
- Split GS2 Mixed Air Outlet, !- Fan Inlet Node Name
- Split GS2 Supply Fan Outlet, !- Fan Outlet Node Name
- Split GS2 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MSW Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MSW Air Loop Outlet, !- Reference Setpoint Node Name
- Split MSW Mixed Air Outlet, !- Fan Inlet Node Name
- Split MSW Supply Fan Outlet, !- Fan Outlet Node Name
- Split MSW Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MNW Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MNW Air Loop Outlet, !- Reference Setpoint Node Name
- Split MNW Mixed Air Outlet, !- Fan Inlet Node Name
- Split MNW Supply Fan Outlet, !- Fan Outlet Node Name
- Split MNW Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MSE Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MSE Air Loop Outlet, !- Reference Setpoint Node Name
- Split MSE Mixed Air Outlet, !- Fan Inlet Node Name
- Split MSE Supply Fan Outlet, !- Fan Outlet Node Name
- Split MSE Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MNE Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MNE Air Loop Outlet, !- Reference Setpoint Node Name
- Split MNE Mixed Air Outlet, !- Fan Inlet Node Name
- Split MNE Supply Fan Outlet, !- Fan Outlet Node Name
- Split MNE Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MN1 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MN1 Air Loop Outlet, !- Reference Setpoint Node Name
- Split MN1 Mixed Air Outlet, !- Fan Inlet Node Name
- Split MN1 Supply Fan Outlet, !- Fan Outlet Node Name
- Split MN1 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MN2 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MN2 Air Loop Outlet, !- Reference Setpoint Node Name
- Split MN2 Mixed Air Outlet, !- Fan Inlet Node Name
- Split MN2 Supply Fan Outlet, !- Fan Outlet Node Name
- Split MN2 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MS1 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MS1 Air Loop Outlet, !- Reference Setpoint Node Name
- Split MS1 Mixed Air Outlet, !- Fan Inlet Node Name
- Split MS1 Supply Fan Outlet, !- Fan Outlet Node Name
- Split MS1 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split MS2 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split MS2 Air Loop Outlet, !- Reference Setpoint Node Name
- Split MS2 Mixed Air Outlet, !- Fan Inlet Node Name
- Split MS2 Supply Fan Outlet, !- Fan Outlet Node Name
- Split MS2 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TSW Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TSW Air Loop Outlet, !- Reference Setpoint Node Name
- Split TSW Mixed Air Outlet, !- Fan Inlet Node Name
- Split TSW Supply Fan Outlet, !- Fan Outlet Node Name
- Split TSW Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TNW Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TNW Air Loop Outlet, !- Reference Setpoint Node Name
- Split TNW Mixed Air Outlet, !- Fan Inlet Node Name
- Split TNW Supply Fan Outlet, !- Fan Outlet Node Name
- Split TNW Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TSE Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TSE Air Loop Outlet, !- Reference Setpoint Node Name
- Split TSE Mixed Air Outlet, !- Fan Inlet Node Name
- Split TSE Supply Fan Outlet, !- Fan Outlet Node Name
- Split TSE Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TNE Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TNE Air Loop Outlet, !- Reference Setpoint Node Name
- Split TNE Mixed Air Outlet, !- Fan Inlet Node Name
- Split TNE Supply Fan Outlet, !- Fan Outlet Node Name
- Split TNE Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TN1 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TN1 Air Loop Outlet, !- Reference Setpoint Node Name
- Split TN1 Mixed Air Outlet, !- Fan Inlet Node Name
- Split TN1 Supply Fan Outlet, !- Fan Outlet Node Name
- Split TN1 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TN2 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TN2 Air Loop Outlet, !- Reference Setpoint Node Name
- Split TN2 Mixed Air Outlet, !- Fan Inlet Node Name
- Split TN2 Supply Fan Outlet, !- Fan Outlet Node Name
- Split TN2 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TS1 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TS1 Air Loop Outlet, !- Reference Setpoint Node Name
- Split TS1 Mixed Air Outlet, !- Fan Inlet Node Name
- Split TS1 Supply Fan Outlet, !- Fan Outlet Node Name
- Split TS1 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-SetpointManager:MixedAir,
- Split TS2 Outdoor Air Temp Manager, !- Name
- Temperature, !- Control Variable
- Split TS2 Air Loop Outlet, !- Reference Setpoint Node Name
- Split TS2 Mixed Air Outlet, !- Fan Inlet Node Name
- Split TS2 Supply Fan Outlet, !- Fan Outlet Node Name
- Split TS2 Mixed Air Outlet; !- Setpoint Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLER:OUTSIDE AIR ===========
-
- Controller:OutdoorAir,
- Split GSW OA Controller, !- Name
- Split GSW Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GSW Air Loop Inlet,!- Return Air Node Name
- Split GSW Mixed Air Outlet, !- Mixed Air Node Name
- Split GSW Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split GNW OA Controller, !- Name
- Split GNW Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GNW Air Loop Inlet,!- Return Air Node Name
- Split GNW Mixed Air Outlet, !- Mixed Air Node Name
- Split GNW Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split Office OA Controller, !- Name
- Split Office Relief Air Outlet, !- Relief Air Outlet Node Name
- Split Office Air Loop Inlet, !- Return Air Node Name
- Split Office Mixed Air Outlet, !- Mixed Air Node Name
- Split Office Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum; !- Minimum Limit Type
-
- Controller:OutdoorAir,
- Split GNE OA Controller, !- Name
- Split GNE Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GNE Air Loop Inlet,!- Return Air Node Name
- Split GNE Mixed Air Outlet, !- Mixed Air Node Name
- Split GNE Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split GN1 OA Controller, !- Name
- Split GN1 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GN1 Air Loop Inlet,!- Return Air Node Name
- Split GN1 Mixed Air Outlet, !- Mixed Air Node Name
- Split GN1 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split GN2 OA Controller, !- Name
- Split GN2 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GN2 Air Loop Inlet,!- Return Air Node Name
- Split GN2 Mixed Air Outlet, !- Mixed Air Node Name
- Split GN2 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split GS1 OA Controller, !- Name
- Split GS1 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GS1 Air Loop Inlet,!- Return Air Node Name
- Split GS1 Mixed Air Outlet, !- Mixed Air Node Name
- Split GS1 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split GS2 OA Controller, !- Name
- Split GS2 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split GS2 Air Loop Inlet,!- Return Air Node Name
- Split GS2 Mixed Air Outlet, !- Mixed Air Node Name
- Split GS2 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MSW OA Controller, !- Name
- Split MSW Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MSW Air Loop Inlet,!- Return Air Node Name
- Split MSW Mixed Air Outlet, !- Mixed Air Node Name
- Split MSW Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MNW OA Controller, !- Name
- Split MNW Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MNW Air Loop Inlet,!- Return Air Node Name
- Split MNW Mixed Air Outlet, !- Mixed Air Node Name
- Split MNW Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MSE OA Controller, !- Name
- Split MSE Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MSE Air Loop Inlet,!- Return Air Node Name
- Split MSE Mixed Air Outlet, !- Mixed Air Node Name
- Split MSE Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MNE OA Controller, !- Name
- Split MNE Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MNE Air Loop Inlet,!- Return Air Node Name
- Split MNE Mixed Air Outlet, !- Mixed Air Node Name
- Split MNE Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MN1 OA Controller, !- Name
- Split MN1 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MN1 Air Loop Inlet,!- Return Air Node Name
- Split MN1 Mixed Air Outlet, !- Mixed Air Node Name
- Split MN1 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MN2 OA Controller, !- Name
- Split MN2 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MN2 Air Loop Inlet,!- Return Air Node Name
- Split MN2 Mixed Air Outlet, !- Mixed Air Node Name
- Split MN2 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MS1 OA Controller, !- Name
- Split MS1 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MS1 Air Loop Inlet,!- Return Air Node Name
- Split MS1 Mixed Air Outlet, !- Mixed Air Node Name
- Split MS1 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split MS2 OA Controller, !- Name
- Split MS2 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split MS2 Air Loop Inlet,!- Return Air Node Name
- Split MS2 Mixed Air Outlet, !- Mixed Air Node Name
- Split MS2 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TSW OA Controller, !- Name
- Split TSW Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TSW Air Loop Inlet,!- Return Air Node Name
- Split TSW Mixed Air Outlet, !- Mixed Air Node Name
- Split TSW Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TNW OA Controller, !- Name
- Split TNW Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TNW Air Loop Inlet,!- Return Air Node Name
- Split TNW Mixed Air Outlet, !- Mixed Air Node Name
- Split TNW Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TSE OA Controller, !- Name
- Split TSE Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TSE Air Loop Inlet,!- Return Air Node Name
- Split TSE Mixed Air Outlet, !- Mixed Air Node Name
- Split TSE Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TNE OA Controller, !- Name
- Split TNE Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TNE Air Loop Inlet,!- Return Air Node Name
- Split TNE Mixed Air Outlet, !- Mixed Air Node Name
- Split TNE Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TN1 OA Controller, !- Name
- Split TN1 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TN1 Air Loop Inlet,!- Return Air Node Name
- Split TN1 Mixed Air Outlet, !- Mixed Air Node Name
- Split TN1 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TN2 OA Controller, !- Name
- Split TN2 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TN2 Air Loop Inlet,!- Return Air Node Name
- Split TN2 Mixed Air Outlet, !- Mixed Air Node Name
- Split TN2 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TS1 OA Controller, !- Name
- Split TS1 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TS1 Air Loop Inlet,!- Return Air Node Name
- Split TS1 Mixed Air Outlet, !- Mixed Air Node Name
- Split TS1 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
- Controller:OutdoorAir,
- Split TS2 OA Controller, !- Name
- Split TS2 Relief Air Outlet, !- Relief Air Outlet Node Name
- Split TS2 Air Loop Inlet,!- Return Air Node Name
- Split TS2 Mixed Air Outlet, !- Mixed Air Node Name
- Split TS2 Outside Air Inlet, !- Actuator Node Name
- autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
- autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- All Off, !- Minimum Outdoor Air Schedule Name
- , !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
-
-
-
-
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- G SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- G SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- G NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- G NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- G NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- G NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- G S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- G S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- G S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- G S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- G S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- G S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- G S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- G S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- G S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- G S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- G S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- G S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- G S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- G S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- G S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- G S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- G S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- M SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- M SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- M NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- M NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- M SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- M SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- M NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- M NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- M S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- M S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- M S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- M S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- M S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- M S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- M S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- M S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- M S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- M S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- M S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- M S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- M S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- M S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- M S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- M S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- M S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T SW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T SW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T SW Apartment ERV Sup Fan, !- Supply Air Fan Name
- T SW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T SW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T SW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T SW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T SW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T SW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T SW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T SW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T SW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T SW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SW Apartment ERV Outlet Node, !- Air Inlet Node Name
- T SW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T SW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T SW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T NW Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T NW Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T NW Apartment ERV Sup Fan, !- Supply Air Fan Name
- T NW Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T NW Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T NW Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T NW Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T NW Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T NW Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T NW Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T NW Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T NW Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T NW Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NW Apartment ERV Outlet Node, !- Air Inlet Node Name
- T NW Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T NW Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NW Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T NW Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T SE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T SE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T SE Apartment ERV Sup Fan, !- Supply Air Fan Name
- T SE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T SE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T SE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T SE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T SE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T SE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T SE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T SE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T SE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T SE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SE Apartment ERV Outlet Node, !- Air Inlet Node Name
- T SE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T SE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T SE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T SE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T NE Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T NE Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T NE Apartment ERV Sup Fan, !- Supply Air Fan Name
- T NE Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T NE Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T NE Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T NE Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T NE Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T NE Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T NE Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T NE Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T NE Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T NE Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NE Apartment ERV Outlet Node, !- Air Inlet Node Name
- T NE Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T NE Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T NE Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T NE Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T N1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T N1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T N1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T N1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T N1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T N1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T N1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T N1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T N1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T N1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T N1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T N1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T N1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T N1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T N1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T N1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T N2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T N2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T N2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T N2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T N2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T N2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T N2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T N2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T N2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T N2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T N2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T N2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T N2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T N2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T N2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T N2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T N2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T S1 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T S1 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T S1 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T S1 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T S1 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T S1 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T S1 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T S1 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T S1 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T S1 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T S1 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T S1 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T S1 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S1 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T S1 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T S1 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S1 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T S1 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS related to CLASS: ZoneHVAC:EnergyRecoveryVentilator
-
-ZoneHVAC:EnergyRecoveryVentilator,
- T S2 Apartment ERV, !- Name
- All On, !- Availability Schedule Name
- T S2 Apartment OA Heat Exchanger, !- Heat Exchanger Name
- 0.025957109, !- Supply Air Flow Rate {m3/s}
- 0.025957109, !- Exhaust Air Flow Rate {m3/s}
- T S2 Apartment ERV Sup Fan, !- Supply Air Fan Name
- T S2 Apartment ERV Exh Fan, !- Exhaust Air Fan Name
- T S2 Apartment ERV Ctrl; !- ERV controller name
-
-ZoneHVAC:EnergyRecoveryVentilator:Controller,
- T S2 Apartment ERV Ctrl, !- Name
- , !- Temperature High Limit {C}
- , !- Temperature Low Limit {C}
- , !- Enthalpy High Limit {J/kg}
- , !- Dewpoint Temperature Limit {C}
- , !- Electronic Enthalpy Limit Curve Name
- NoExhaustAirTemperatureLimit, !- Exhaust Air Temperature Limit
- NoExhaustAirEnthalpyLimit, !- Exhaust Air Enthalpy Limit
- , !- Time of Day Economizer Flow Control S
- No, !- High Humidity Control Flag
- , !- Humidistat Control Zone Name
- 1, !- High Humidity Outdoor Air Flow Ratio
- No; !- Control High Indoor Humidity Based on Outdoor Humidity ratio
-
-OutdoorAir:Node,
- T S2 Apartment Outside Air Node; !- 1st Node name or node list name
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- T S2 Apartment OA Heat Exchanger, !- Name
- AllOn_Except_DD, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.6, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.623, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.596, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.618, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- T S2 Apartment Outside Air Node, !- Supply Air Inlet Node Name
- T S2 Apartment ERV Outlet Node, !- Supply Air Outlet Node Name
- T S2 Apartment Zone Exhaust Node, !- Exhaust Air Inlet Node Name
- T S2 Apartment ERV Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 0, !- Nominal Electric Power {W}
- No, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-Fan:OnOff,
- T S2 Apartment ERV Sup Fan, !- Name
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S2 Apartment ERV Outlet Node, !- Air Inlet Node Name
- T S2 Apartment ERV Sup Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-Fan:OnOff,
- T S2 Apartment ERV Exh Fan, !-
- All On, !- Availability Schedule Name
- 0.303158, !- Fan Total Efficiency
- 270.64755, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
- 0.48, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- T S2 Apartment ERV Secondary Outlet Node, !- Air Inlet Node Name
- T S2 Apartment ERV Exh Fan Outlet Node, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLED ZONE EQUIP CONFIGURATION ===========
-
- ZoneHVAC:EquipmentConnections,
- G SW Apartment, !- Zone Name
- G SW Apartment Equipment,!- Zone Conditioning Equipment List Name
- G SW Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G SW Apartment Zone Air Node, !- Zone Air Node Name
- G SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G SW Apartment Zone Inlets, !- Node List Name
- G SW Apartment Zone Equip Inlet, !- Node_ID_1
- G SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- G NW Apartment, !- Zone Name
- G NW Apartment Equipment,!- Zone Conditioning Equipment List Name
- G NW Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G NW Apartment Zone Air Node, !- Zone Air Node Name
- G NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G NW Apartment Zone Inlets, !- Node List Name
- G NW Apartment Zone Equip Inlet, !- Node_ID_1
- G NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- Office, !- Zone Name
- Office Equipment, !- Zone Conditioning Equipment List Name
- Office Zone Equip Inlet, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Office Zone Air Node, !- Zone Air Node Name
- Office Return Outlet; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- G NE Apartment, !- Zone Name
- G NE Apartment Equipment,!- Zone Conditioning Equipment List Name
- G NE Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G NE Apartment Zone Air Node, !- Zone Air Node Name
- G NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G NE Apartment Zone Inlets, !- Node List Name
- G NE Apartment Zone Equip Inlet, !- Node_ID_1
- G NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- G N1 Apartment, !- Zone Name
- G N1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G N1 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G N1 Apartment Zone Air Node, !- Zone Air Node Name
- G N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G N1 Apartment Zone Inlets, !- Node List Name
- G N1 Apartment Zone Equip Inlet, !- Node_ID_1
- G N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- G N2 Apartment, !- Zone Name
- G N2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G N2 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G N2 Apartment Zone Air Node, !- Zone Air Node Name
- G N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G N2 Apartment Zone Inlets, !- Node List Name
- G N2 Apartment Zone Equip Inlet, !- Node_ID_1
- G N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- G S1 Apartment, !- Zone Name
- G S1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G S1 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G S1 Apartment Zone Air Node, !- Zone Air Node Name
- G S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G S1 Apartment Zone Inlets, !- Node List Name
- G S1 Apartment Zone Equip Inlet, !- Node_ID_1
- G S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- G S2 Apartment, !- Zone Name
- G S2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- G S2 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- G S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- G S2 Apartment Zone Air Node, !- Zone Air Node Name
- G S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- G S2 Apartment Zone Inlets, !- Node List Name
- G S2 Apartment Zone Equip Inlet, !- Node_ID_1
- G S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M SW Apartment, !- Zone Name
- M SW Apartment Equipment,!- Zone Conditioning Equipment List Name
- M SW Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M SW Apartment Zone Air Node, !- Zone Air Node Name
- M SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M SW Apartment Zone Inlets, !- Node List Name
- M SW Apartment Zone Equip Inlet, !- Node_ID_1
- M SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M NW Apartment, !- Zone Name
- M NW Apartment Equipment,!- Zone Conditioning Equipment List Name
- M NW Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M NW Apartment Zone Air Node, !- Zone Air Node Name
- M NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M NW Apartment Zone Inlets, !- Node List Name
- M NW Apartment Zone Equip Inlet, !- Node_ID_1
- M NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M SE Apartment, !- Zone Name
- M SE Apartment Equipment,!- Zone Conditioning Equipment List Name
- M SE Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M SE Apartment Zone Air Node, !- Zone Air Node Name
- M SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M SE Apartment Zone Inlets, !- Node List Name
- M SE Apartment Zone Equip Inlet, !- Node_ID_1
- M SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M NE Apartment, !- Zone Name
- M NE Apartment Equipment,!- Zone Conditioning Equipment List Name
- M NE Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M NE Apartment Zone Air Node, !- Zone Air Node Name
- M NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M NE Apartment Zone Inlets, !- Node List Name
- M NE Apartment Zone Equip Inlet, !- Node_ID_1
- M NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M N1 Apartment, !- Zone Name
- M N1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M N1 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M N1 Apartment Zone Air Node, !- Zone Air Node Name
- M N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M N1 Apartment Zone Inlets, !- Node List Name
- M N1 Apartment Zone Equip Inlet, !- Node_ID_1
- M N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M N2 Apartment, !- Zone Name
- M N2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M N2 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M N2 Apartment Zone Air Node, !- Zone Air Node Name
- M N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M N2 Apartment Zone Inlets, !- Node List Name
- M N2 Apartment Zone Equip Inlet, !- Node_ID_1
- M N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M S1 Apartment, !- Zone Name
- M S1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M S1 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M S1 Apartment Zone Air Node, !- Zone Air Node Name
- M S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M S1 Apartment Zone Inlets, !- Node List Name
- M S1 Apartment Zone Equip Inlet, !- Node_ID_1
- M S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- M S2 Apartment, !- Zone Name
- M S2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- M S2 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- M S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- M S2 Apartment Zone Air Node, !- Zone Air Node Name
- M S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- M S2 Apartment Zone Inlets, !- Node List Name
- M S2 Apartment Zone Equip Inlet, !- Node_ID_1
- M S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T SW Apartment, !- Zone Name
- T SW Apartment Equipment,!- Zone Conditioning Equipment List Name
- T SW Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T SW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T SW Apartment Zone Air Node, !- Zone Air Node Name
- T SW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T SW Apartment Zone Inlets, !- Node List Name
- T SW Apartment Zone Equip Inlet, !- Node_ID_1
- T SW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T NW Apartment, !- Zone Name
- T NW Apartment Equipment,!- Zone Conditioning Equipment List Name
- T NW Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T NW Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T NW Apartment Zone Air Node, !- Zone Air Node Name
- T NW Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T NW Apartment Zone Inlets, !- Node List Name
- T NW Apartment Zone Equip Inlet, !- Node_ID_1
- T NW Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T SE Apartment, !- Zone Name
- T SE Apartment Equipment,!- Zone Conditioning Equipment List Name
- T SE Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T SE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T SE Apartment Zone Air Node, !- Zone Air Node Name
- T SE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T SE Apartment Zone Inlets, !- Node List Name
- T SE Apartment Zone Equip Inlet, !- Node_ID_1
- T SE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T NE Apartment, !- Zone Name
- T NE Apartment Equipment,!- Zone Conditioning Equipment List Name
- T NE Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T NE Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T NE Apartment Zone Air Node, !- Zone Air Node Name
- T NE Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T NE Apartment Zone Inlets, !- Node List Name
- T NE Apartment Zone Equip Inlet, !- Node_ID_1
- T NE Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T N1 Apartment, !- Zone Name
- T N1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T N1 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T N1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T N1 Apartment Zone Air Node, !- Zone Air Node Name
- T N1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T N1 Apartment Zone Inlets, !- Node List Name
- T N1 Apartment Zone Equip Inlet, !- Node_ID_1
- T N1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T N2 Apartment, !- Zone Name
- T N2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T N2 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T N2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T N2 Apartment Zone Air Node, !- Zone Air Node Name
- T N2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T N2 Apartment Zone Inlets, !- Node List Name
- T N2 Apartment Zone Equip Inlet, !- Node_ID_1
- T N2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T S1 Apartment, !- Zone Name
- T S1 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T S1 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T S1 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T S1 Apartment Zone Air Node, !- Zone Air Node Name
- T S1 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T S1 Apartment Zone Inlets, !- Node List Name
- T S1 Apartment Zone Equip Inlet, !- Node_ID_1
- T S1 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
- ZoneHVAC:EquipmentConnections,
- T S2 Apartment, !- Zone Name
- T S2 Apartment Equipment,!- Zone Conditioning Equipment List Name
- T S2 Apartment Zone Inlets, !- Zone Air Inlet Node or NodeList Name
- T S2 Apartment Zone Exhaust Node, !- Zone Air Exhaust Node or NodeList Name
- T S2 Apartment Zone Air Node, !- Zone Air Node Name
- T S2 Apartment Return Outlet; !- Zone Return Air Node or NodeList Name
-NodeList,
- T S2 Apartment Zone Inlets, !- Node List Name
- T S2 Apartment Zone Equip Inlet, !- Node_ID_1
- T S2 Apartment ERV Sup Fan Outlet Node; !- Node_ID_2
-
-!- =========== ALL OBJECTS IN CLASS: ZONE EQUIPMENT LIST ===========
-
-ZoneHVAC:EquipmentList,
- G SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- Office Direct Air, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- G S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- G S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- G S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- M S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- M S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- M S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T SW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T SW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T SW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T NW Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T NW Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T NW Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T SE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T SE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T SE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T NE Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T NE Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T NE Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T N1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T N1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T N1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T N2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T N2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T N2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T S1 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T S1 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T S1 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-ZoneHVAC:EquipmentList,
- T S2 Apartment Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:EnergyRecoveryVentilator , !- KEY --Zone Equipment Type 2
- T S2 Apartment ERV, !- Zone Equipment 2 Name
- 1, !- Zone Equipment 2 Cooling Sequence
- 1, !- Zone Equipment 2 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type
- T S2 Apartment Direct Air, !- Zone Equipment 1 Name
- 2, !- Zone Equipment 1 Cooling Sequence
- 2; !- Zone Equipment 1 Heating or No-Load Sequence
-
-!- =========== ALL OBJECTS IN CLASS: FURNACE:HEATCOOL ===========
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GSW Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GSW Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GSW Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GSW Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GSW Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GSW Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GNW Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GNW Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GNW Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GNW Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GNW Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GNW Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split Office Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split Office Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split Office Air Loop Outlet, !- Furnace Air Outlet Node Name
- FAN_OFF_w_SB_SCH, !- Supply Air Fan Operating Mode Schedule Name
-
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- Office, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split Office Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split Office Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split Office Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GNE Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GNE Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GNE Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GNE Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GNE Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GNE Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GN1 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GN1 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GN1 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GN1 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GN1 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GN1 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GN2 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GN2 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GN2 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GN2 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GN2 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GN2 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GS1 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GS1 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GS1 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GS1 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GS1 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GS1 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split GS2 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split GS2 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split GS2 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- G S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split GS2 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split GS2 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split GS2 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MSW Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MSW Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MSW Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MSW Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MSW Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MSW Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MNW Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MNW Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MNW Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MNW Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MNW Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MNW Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MSE Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MSE Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MSE Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MSE Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MSE Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MSE Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MNE Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MNE Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MNE Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MNE Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MNE Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MNE Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MN1 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MN1 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MN1 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MN1 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MN1 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MN1 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MN2 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MN2 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MN2 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MN2 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MN2 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MN2 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MS1 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MS1 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MS1 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MS1 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MS1 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MS1 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split MS2 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split MS2 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split MS2 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- M S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split MS2 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split MS2 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split MS2 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TSW Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TSW Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TSW Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T SW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TSW Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TSW Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TSW Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TNW Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TNW Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TNW Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T NW Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TNW Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TNW Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TNW Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TSE Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TSE Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TSE Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T SE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TSE Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TSE Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TSE Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TNE Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TNE Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TNE Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T NE Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TNE Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TNE Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TNE Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TN1 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TN1 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TN1 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T N1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TN1 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TN1 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TN1 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TN2 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TN2 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TN2 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T N2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TN2 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TN2 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TN2 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TS1 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TS1 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TS1 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T S1 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TS1 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TS1 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TS1 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
- AirLoopHVAC:Unitary:Furnace:HeatCool,
- Split TS2 Furnace with DX Cooling, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Split TS2 Mixed Air Outlet, !- Furnace Air Inlet Node Name
- Split TS2 Air Loop Outlet, !- Furnace Air Outlet Node Name
- All Off, !- Supply Air Fan Operating Mode Schedule Name
- 80, !- Maximum Supply Air Temperature {C}
- autosize, !- Cooling Supply Air Flow Rate {m3/s}
- autosize, !- Heating Supply Air Flow Rate {m3/s}
- autosize, !- No Load Supply Air Flow Rate {m3/s}
- T S2 Apartment, !- Controlling Zone or Thermostat Location
- Fan:OnOff, !- Supply Fan Object Type
- Split TS2 Supply Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Coil:Heating:Fuel, !- Heating Coil Object Type
- Split TS2 Heating Coil, !- Heating Coil Name
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- Split TS2 Cooling Coil, !- Cooling Coil Name
- None; !- Dehumidification Control Type
-
-!- =========== ALL OBJECTS IN CLASS: DIRECT AIR ===========
-
- AirTerminal:SingleDuct:Uncontrolled,
- G SW Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G SW Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G NW Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G NW Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- Office Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- Office Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G NE Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G NE Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G N1 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G N1 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G N2 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G N2 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G S1 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G S1 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- G S2 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- G S2 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M SW Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M SW Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M NW Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M NW Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M SE Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M SE Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M NE Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M NE Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M N1 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M N1 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M N2 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M N2 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M S1 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M S1 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- M S2 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- M S2 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T SW Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T SW Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T NW Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T NW Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T SE Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T SE Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T NE Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T NE Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T N1 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T N1 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T N2 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T N2 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T S1 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T S1 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
- AirTerminal:SingleDuct:Uncontrolled,
- T S2 Apartment Direct Air, !- Name
- COMPACT HVAC-ALWAYS 1, !- Availability Schedule Name
- T S2 Apartment Zone Equip Inlet, !- Zone Supply Air Node Name
- autosize; !- Maximum Air Flow Rate {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: ZONE CONTROL:THERMOSTATIC ===========
-
-
-
- ZoneControl:Thermostat,
- G SW Apartment Thermostat, !- Name
- G SW Apartment, !- Zone or ZoneList Name
- ZONE CONTROL TYPE SCHED, !- Control Type Schedule Name
- ThermostatSetpoint:SingleCooling, !- Control 1 Object Type
- AptCoolingSetPoint, !- Control 1 Name
- ThermostatSetpoint:SingleHeating, !- Control 2 Object Type
- AptHeatingSetPoint, !- Control 2 Name
- ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type
- S Apartment Dual SP Control; !- Control 3 Name
-
- ZoneControl:Thermostat,
- G NW Apartment Thermostat, !- Name
- G NW Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Office Thermostat, !- Name
- Office, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Office Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- G NE Apartment Thermostat, !- Name
- G NE Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- G N1 Apartment Thermostat, !- Name
- G N1 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- G N2 Apartment Thermostat, !- Name
- G N2 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- G S1 Apartment Thermostat, !- Name
- G S1 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- G S2 Apartment Thermostat, !- Name
- G S2 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M SW Apartment Thermostat, !- Name
- M SW Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M NW Apartment Thermostat, !- Name
- M NW Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M SE Apartment Thermostat, !- Name
- M SE Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M NE Apartment Thermostat, !- Name
- M NE Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M N1 Apartment Thermostat, !- Name
- M N1 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M N2 Apartment Thermostat, !- Name
- M N2 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M S1 Apartment Thermostat, !- Name
- M S1 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- M S2 Apartment Thermostat, !- Name
- M S2 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T SW Apartment Thermostat, !- Name
- T SW Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T NW Apartment Thermostat, !- Name
- T NW Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T SE Apartment Thermostat, !- Name
- T SE Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T NE Apartment Thermostat, !- Name
- T NE Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T N1 Apartment Thermostat, !- Name
- T N1 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T N2 Apartment Thermostat, !- Name
- T N2 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- N Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T S1 Apartment Thermostat, !- Name
- T S1 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
- ZoneControl:Thermostat,
- T S2 Apartment Thermostat, !- Name
- T S2 Apartment, !- Zone or ZoneList Name
- COMPACT HVAC-ALWAYS 4, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- S Apartment Dual SP Control; !- Control 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:SINGLEHEATING ===========
-
-
-
- ThermostatSetpoint:SingleHeating,
- AptHeatingSetPoint, !- Name
- HTGSETP_APT_SCH; !- Setpoint Temperature Schedule Name
-
-
-!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:SINGLECOOLING ===========
-
-
- ThermostatSetpoint:SingleCooling,
- AptCoolingSetPoint, !- Name
- CLGSETP_APT_SCH; !- Setpoint Temperature Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: DUAL SETPOINT WITH DEADBAND ===========
-
-ThermostatSetpoint:DualSetpoint,
- S Apartment Dual SP Control, !- Name
- S HTGSETP_APT_SCH, !- Heating Setpoint Temperature Schedule Name
- S CLGSETP_APT_SCH; !- Cooling Setpoint Temperature Schedule Name
-
-ThermostatSetpoint:DualSetpoint,
- N Apartment Dual SP Control, !- Name
- N HTGSETP_APT_SCH, !- Heating Setpoint Temperature Schedule Name
- N CLGSETP_APT_SCH; !- Cooling Setpoint Temperature Schedule Name
-
-
- ThermostatSetpoint:DualSetpoint,
- Office Dual SP Control, !- Name
- HTGSETP_OFF_SCH_NO_OPTIMUM, !- Heating Setpoint Temperature Schedule Name
- CLGSETP_OFF_SCH_No_Optimum; !- Cooling Setpoint Temperature Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: ZONE SUPPLY AIR PATH ===========
-
- AirLoopHVAC:SupplyPath,
- Split GSW Supply Path, !- Name
- Split GSW Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GSW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split GNW Supply Path, !- Name
- Split GNW Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GNW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split Office Supply Path,!- Name
- Split Office Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split Office Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split GNE Supply Path, !- Name
- Split GNE Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GNE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split GN1 Supply Path, !- Name
- Split GN1 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GN1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split GN2 Supply Path, !- Name
- Split GN2 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GN2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split GS1 Supply Path, !- Name
- Split GS1 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GS1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split GS2 Supply Path, !- Name
- Split GS2 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split GS2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MSW Supply Path, !- Name
- Split MSW Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MSW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MNW Supply Path, !- Name
- Split MNW Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MNW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MSE Supply Path, !- Name
- Split MSE Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MSE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MNE Supply Path, !- Name
- Split MNE Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MNE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MN1 Supply Path, !- Name
- Split MN1 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MN1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MN2 Supply Path, !- Name
- Split MN2 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MN2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MS1 Supply Path, !- Name
- Split MS1 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MS1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split MS2 Supply Path, !- Name
- Split MS2 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split MS2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TSW Supply Path, !- Name
- Split TSW Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TSW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TNW Supply Path, !- Name
- Split TNW Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TNW Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TSE Supply Path, !- Name
- Split TSE Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TSE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TNE Supply Path, !- Name
- Split TNE Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TNE Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TN1 Supply Path, !- Name
- Split TN1 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TN1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TN2 Supply Path, !- Name
- Split TN2 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TN2 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TS1 Supply Path, !- Name
- Split TS1 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TS1 Zone Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- Split TS2 Supply Path, !- Name
- Split TS2 Supply Path Inlet, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- Split TS2 Zone Splitter; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: ZONE RETURN AIR PATH ===========
-
- AirLoopHVAC:ReturnPath,
- Split GSW Return Path, !- Name
- Split GSW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GSW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split GNW Return Path, !- Name
- Split GNW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GNW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split Office Return Path,!- Name
- Split Office Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split Office Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split GNE Return Path, !- Name
- Split GNE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GNE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split GN1 Return Path, !- Name
- Split GN1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GN1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split GN2 Return Path, !- Name
- Split GN2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GN2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split GS1 Return Path, !- Name
- Split GS1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GS1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split GS2 Return Path, !- Name
- Split GS2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split GS2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MSW Return Path, !- Name
- Split MSW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MSW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MNW Return Path, !- Name
- Split MNW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MNW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MSE Return Path, !- Name
- Split MSE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MSE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MNE Return Path, !- Name
- Split MNE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MNE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MN1 Return Path, !- Name
- Split MN1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MN1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MN2 Return Path, !- Name
- Split MN2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MN2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MS1 Return Path, !- Name
- Split MS1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MS1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split MS2 Return Path, !- Name
- Split MS2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split MS2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TSW Return Path, !- Name
- Split TSW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TSW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TNW Return Path, !- Name
- Split TNW Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TNW Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TSE Return Path, !- Name
- Split TSE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TSE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TNE Return Path, !- Name
- Split TNE Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TNE Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TN1 Return Path, !- Name
- Split TN1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TN1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TN2 Return Path, !- Name
- Split TN2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TN2 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TS1 Return Path, !- Name
- Split TS1 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TS1 Zone Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- Split TS2 Return Path, !- Name
- Split TS2 Return Air Outlet, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- Split TS2 Zone Mixer; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: ZONE SPLITTER ===========
-
- AirLoopHVAC:ZoneSplitter,
- Split GSW Zone Splitter, !- Name
- Split GSW Supply Path Inlet, !- Inlet Node Name
- G SW Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split GNW Zone Splitter, !- Name
- Split GNW Supply Path Inlet, !- Inlet Node Name
- G NW Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split Office Zone Splitter, !- Name
- Split Office Supply Path Inlet, !- Inlet Node Name
- Office Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split GNE Zone Splitter, !- Name
- Split GNE Supply Path Inlet, !- Inlet Node Name
- G NE Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split GN1 Zone Splitter, !- Name
- Split GN1 Supply Path Inlet, !- Inlet Node Name
- G N1 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split GN2 Zone Splitter, !- Name
- Split GN2 Supply Path Inlet, !- Inlet Node Name
- G N2 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split GS1 Zone Splitter, !- Name
- Split GS1 Supply Path Inlet, !- Inlet Node Name
- G S1 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split GS2 Zone Splitter, !- Name
- Split GS2 Supply Path Inlet, !- Inlet Node Name
- G S2 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MSW Zone Splitter, !- Name
- Split MSW Supply Path Inlet, !- Inlet Node Name
- M SW Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MNW Zone Splitter, !- Name
- Split MNW Supply Path Inlet, !- Inlet Node Name
- M NW Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MSE Zone Splitter, !- Name
- Split MSE Supply Path Inlet, !- Inlet Node Name
- M SE Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MNE Zone Splitter, !- Name
- Split MNE Supply Path Inlet, !- Inlet Node Name
- M NE Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MN1 Zone Splitter, !- Name
- Split MN1 Supply Path Inlet, !- Inlet Node Name
- M N1 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MN2 Zone Splitter, !- Name
- Split MN2 Supply Path Inlet, !- Inlet Node Name
- M N2 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MS1 Zone Splitter, !- Name
- Split MS1 Supply Path Inlet, !- Inlet Node Name
- M S1 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split MS2 Zone Splitter, !- Name
- Split MS2 Supply Path Inlet, !- Inlet Node Name
- M S2 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TSW Zone Splitter, !- Name
- Split TSW Supply Path Inlet, !- Inlet Node Name
- T SW Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TNW Zone Splitter, !- Name
- Split TNW Supply Path Inlet, !- Inlet Node Name
- T NW Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TSE Zone Splitter, !- Name
- Split TSE Supply Path Inlet, !- Inlet Node Name
- T SE Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TNE Zone Splitter, !- Name
- Split TNE Supply Path Inlet, !- Inlet Node Name
- T NE Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TN1 Zone Splitter, !- Name
- Split TN1 Supply Path Inlet, !- Inlet Node Name
- T N1 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TN2 Zone Splitter, !- Name
- Split TN2 Supply Path Inlet, !- Inlet Node Name
- T N2 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TS1 Zone Splitter, !- Name
- Split TS1 Supply Path Inlet, !- Inlet Node Name
- T S1 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- Split TS2 Zone Splitter, !- Name
- Split TS2 Supply Path Inlet, !- Inlet Node Name
- T S2 Apartment Zone Equip Inlet; !- Outlet 1 Node Name
-
-!- =========== ALL OBJECTS IN CLASS: ZONE MIXER ===========
-
- AirLoopHVAC:ZoneMixer,
- Split GSW Zone Mixer, !- Name
- Split GSW Return Air Outlet, !- Outlet Node Name
- G SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split GNW Zone Mixer, !- Name
- Split GNW Return Air Outlet, !- Outlet Node Name
- G NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split Office Zone Mixer, !- Name
- Split Office Return Air Outlet, !- Outlet Node Name
- Office Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split GNE Zone Mixer, !- Name
- Split GNE Return Air Outlet, !- Outlet Node Name
- G NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split GN1 Zone Mixer, !- Name
- Split GN1 Return Air Outlet, !- Outlet Node Name
- G N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split GN2 Zone Mixer, !- Name
- Split GN2 Return Air Outlet, !- Outlet Node Name
- G N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split GS1 Zone Mixer, !- Name
- Split GS1 Return Air Outlet, !- Outlet Node Name
- G S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split GS2 Zone Mixer, !- Name
- Split GS2 Return Air Outlet, !- Outlet Node Name
- G S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MSW Zone Mixer, !- Name
- Split MSW Return Air Outlet, !- Outlet Node Name
- M SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MNW Zone Mixer, !- Name
- Split MNW Return Air Outlet, !- Outlet Node Name
- M NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MSE Zone Mixer, !- Name
- Split MSE Return Air Outlet, !- Outlet Node Name
- M SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MNE Zone Mixer, !- Name
- Split MNE Return Air Outlet, !- Outlet Node Name
- M NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MN1 Zone Mixer, !- Name
- Split MN1 Return Air Outlet, !- Outlet Node Name
- M N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MN2 Zone Mixer, !- Name
- Split MN2 Return Air Outlet, !- Outlet Node Name
- M N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MS1 Zone Mixer, !- Name
- Split MS1 Return Air Outlet, !- Outlet Node Name
- M S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split MS2 Zone Mixer, !- Name
- Split MS2 Return Air Outlet, !- Outlet Node Name
- M S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TSW Zone Mixer, !- Name
- Split TSW Return Air Outlet, !- Outlet Node Name
- T SW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TNW Zone Mixer, !- Name
- Split TNW Return Air Outlet, !- Outlet Node Name
- T NW Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TSE Zone Mixer, !- Name
- Split TSE Return Air Outlet, !- Outlet Node Name
- T SE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TNE Zone Mixer, !- Name
- Split TNE Return Air Outlet, !- Outlet Node Name
- T NE Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TN1 Zone Mixer, !- Name
- Split TN1 Return Air Outlet, !- Outlet Node Name
- T N1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TN2 Zone Mixer, !- Name
- Split TN2 Return Air Outlet, !- Outlet Node Name
- T N2 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TS1 Zone Mixer, !- Name
- Split TS1 Return Air Outlet, !- Outlet Node Name
- T S1 Apartment Return Outlet; !- Inlet 1 Node Name
-
- AirLoopHVAC:ZoneMixer,
- Split TS2 Zone Mixer, !- Name
- Split TS2 Return Air Outlet, !- Outlet Node Name
- T S2 Apartment Return Outlet; !- Inlet 1 Node Name
-
-
-
- WaterHeater:Mixed,
- G SW Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G SW Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- G NW Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G NW Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- G NE Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G NE Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- G N1 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G N1 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- G N2 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G N2 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- G S1 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G S1 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- G S2 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- G S2 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
-
-
- WaterHeater:Mixed,
- M SW Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M SW Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M NW Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M NW Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M SE Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M SE Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M NE Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M NE Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M N1 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M N1 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M N2 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M N2 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M S1 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M S1 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- M S2 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- M S2 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 7.31768861973252E-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
-
-
- WaterHeater:Mixed,
- T SW Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T SW Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T NW Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T NW Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T SE Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T SE Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T NE Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T NE Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T N1 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T N1 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T N2 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T N2 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T S1 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T S1 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
- WaterHeater:Mixed,
- T S2 Apartment Water Heater, !- Name
- 0.1892706, !- Tank Volume {m3}
- Hot Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 1.1111111405455, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 14653.55, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency,
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
-
- 0, !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- T S2 Apartment, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 2.012559766, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 2.012559766, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.66e-06, !- Peak Use Flow Rate {m3/s}
- APT_DHW_SCH; !- Use Flow Rate Fraction Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: COIL:GAS:HEATING ===========
-
- Coil:Heating:Fuel,
- Split GSW Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GSW Supply Fan Outlet, !- Air Inlet Node Name
- Split GSW Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split GNW Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GNW Supply Fan Outlet, !- Air Inlet Node Name
- Split GNW Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split Office Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split Office Supply Fan Outlet, !- Air Inlet Node Name
- Split Office Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split GNE Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GNE Supply Fan Outlet, !- Air Inlet Node Name
- Split GNE Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split GN1 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GN1 Supply Fan Outlet, !- Air Inlet Node Name
- Split GN1 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split GN2 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GN2 Supply Fan Outlet, !- Air Inlet Node Name
- Split GN2 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split GS1 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GS1 Supply Fan Outlet, !- Air Inlet Node Name
- Split GS1 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split GS2 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split GS2 Supply Fan Outlet, !- Air Inlet Node Name
- Split GS2 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MSW Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MSW Supply Fan Outlet, !- Air Inlet Node Name
- Split MSW Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MNW Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MNW Supply Fan Outlet, !- Air Inlet Node Name
- Split MNW Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MSE Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MSE Supply Fan Outlet, !- Air Inlet Node Name
- Split MSE Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MNE Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MNE Supply Fan Outlet, !- Air Inlet Node Name
- Split MNE Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MN1 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MN1 Supply Fan Outlet, !- Air Inlet Node Name
- Split MN1 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MN2 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MN2 Supply Fan Outlet, !- Air Inlet Node Name
- Split MN2 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MS1 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MS1 Supply Fan Outlet, !- Air Inlet Node Name
- Split MS1 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split MS2 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split MS2 Supply Fan Outlet, !- Air Inlet Node Name
- Split MS2 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TSW Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TSW Supply Fan Outlet, !- Air Inlet Node Name
- Split TSW Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TNW Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TNW Supply Fan Outlet, !- Air Inlet Node Name
- Split TNW Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TSE Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TSE Supply Fan Outlet, !- Air Inlet Node Name
- Split TSE Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TNE Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TNE Supply Fan Outlet, !- Air Inlet Node Name
- Split TNE Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TN1 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TN1 Supply Fan Outlet, !- Air Inlet Node Name
- Split TN1 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TN2 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TN2 Supply Fan Outlet, !- Air Inlet Node Name
- Split TN2 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TS1 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TS1 Supply Fan Outlet, !- Air Inlet Node Name
- Split TS1 Heating Coil Outlet; !- Air Outlet Node Name
-
- Coil:Heating:Fuel,
- Split TS2 Heating Coil, !- Name
- All On, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
-0.81, !- Burner Efficiency
- autosize, !- Nominal Capacity {W}
- Split TS2 Supply Fan Outlet, !- Air Inlet Node Name
- Split TS2 Heating Coil Outlet; !- Air Outlet Node Name
-
-!- =========== ALL OBJECTS IN CLASS: COIL:DX:COOLINGBYPASSFACTOREMPIRICAL ===========
-
- Coil:Cooling:DX:SingleSpeed,
- Split GSW Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GSW Heating Coil Outlet, !- Air Inlet Node Name
- Split GSW Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GSW Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split GNW Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GNW Heating Coil Outlet, !- Air Inlet Node Name
- Split GNW Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GNW Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split Office Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split Office Heating Coil Outlet, !- Air Inlet Node Name
- Split Office Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split Office Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split GNE Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GNE Heating Coil Outlet, !- Air Inlet Node Name
- Split GNE Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GNE Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split GN1 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GN1 Heating Coil Outlet, !- Air Inlet Node Name
- Split GN1 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GN1 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split GN2 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GN2 Heating Coil Outlet, !- Air Inlet Node Name
- Split GN2 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GN2 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split GS1 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GS1 Heating Coil Outlet, !- Air Inlet Node Name
- Split GS1 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GS1 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split GS2 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split GS2 Heating Coil Outlet, !- Air Inlet Node Name
- Split GS2 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split GS2 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MSW Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MSW Heating Coil Outlet, !- Air Inlet Node Name
- Split MSW Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MSW Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MNW Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MNW Heating Coil Outlet, !- Air Inlet Node Name
- Split MNW Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MNW Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MSE Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MSE Heating Coil Outlet, !- Air Inlet Node Name
- Split MSE Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MSE Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MNE Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MNE Heating Coil Outlet, !- Air Inlet Node Name
- Split MNE Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MNE Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MN1 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MN1 Heating Coil Outlet, !- Air Inlet Node Name
- Split MN1 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MN1 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MN2 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MN2 Heating Coil Outlet, !- Air Inlet Node Name
- Split MN2 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MN2 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MS1 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MS1 Heating Coil Outlet, !- Air Inlet Node Name
- Split MS1 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MS1 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split MS2 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split MS2 Heating Coil Outlet, !- Air Inlet Node Name
- Split MS2 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split MS2 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TSW Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TSW Heating Coil Outlet, !- Air Inlet Node Name
- Split TSW Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TSW Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TNW Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TNW Heating Coil Outlet, !- Air Inlet Node Name
- Split TNW Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TNW Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TSE Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TSE Heating Coil Outlet, !- Air Inlet Node Name
- Split TSE Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TSE Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TNE Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TNE Heating Coil Outlet, !- Air Inlet Node Name
- Split TNE Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TNE Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TN1 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TN1 Heating Coil Outlet, !- Air Inlet Node Name
- Split TN1 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TN1 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TN2 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TN2 Heating Coil Outlet, !- Air Inlet Node Name
- Split TN2 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TN2 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TS1 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TS1 Heating Coil Outlet, !- Air Inlet Node Name
- Split TS1 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TS1 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
- Coil:Cooling:DX:SingleSpeed,
- Split TS2 Cooling Coil, !- Name
- All On, !- Availability Schedule Name
- autosize, !- Gross Rated Total Cooling Capacity {W}
- autosize, !- Gross Rated Sensible Heat Ratio
-4.11713235489972, !- Gross Rated Cooling COP {W/W}
- autosize, !- Rated Air Flow Rate {m3/s}
- , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- Split TS2 Heating Coil Outlet, !- Air Inlet Node Name
- Split TS2 Air Loop Outlet, !- Air Outlet Node Name
- Split DX Coil Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name
- Split DX Coil Cap-FF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- Split DX Coil EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name
- Split DX Coil EIR-FF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- Split DX Coil PLF, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 0, !- Nominal Time for Condensate Removal to Begin {s}
- 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 0, !- Maximum Cycling Rate {cycles/hr}
- 0, !- Latent Capacity Time Constant {s}
- Split TS2 Cooling Coil Condenser Inlet, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- 0, !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- 0, !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- 10; !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
-
-!- =========== ALL OBJECTS IN CLASS: FAN:SIMPLE:ONOFF ===========
-
- Fan:OnOff,
- Split GSW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GSW Mixed Air Outlet, !- Air Inlet Node Name
- Split GSW Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split GNW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GNW Mixed Air Outlet, !- Air Inlet Node Name
- Split GNW Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split Office Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split Office Mixed Air Outlet, !- Air Inlet Node Name
- Split Office Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split GNE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GNE Mixed Air Outlet, !- Air Inlet Node Name
- Split GNE Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split GN1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GN1 Mixed Air Outlet, !- Air Inlet Node Name
- Split GN1 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split GN2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GN2 Mixed Air Outlet, !- Air Inlet Node Name
- Split GN2 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split GS1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GS1 Mixed Air Outlet, !- Air Inlet Node Name
- Split GS1 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split GS2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split GS2 Mixed Air Outlet, !- Air Inlet Node Name
- Split GS2 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MSW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MSW Mixed Air Outlet, !- Air Inlet Node Name
- Split MSW Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MNW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MNW Mixed Air Outlet, !- Air Inlet Node Name
- Split MNW Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MSE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MSE Mixed Air Outlet, !- Air Inlet Node Name
- Split MSE Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MNE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MNE Mixed Air Outlet, !- Air Inlet Node Name
- Split MNE Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MN1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MN1 Mixed Air Outlet, !- Air Inlet Node Name
- Split MN1 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MN2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MN2 Mixed Air Outlet, !- Air Inlet Node Name
- Split MN2 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MS1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MS1 Mixed Air Outlet, !- Air Inlet Node Name
- Split MS1 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split MS2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split MS2 Mixed Air Outlet, !- Air Inlet Node Name
- Split MS2 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TSW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TSW Mixed Air Outlet, !- Air Inlet Node Name
- Split TSW Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TNW Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TNW Mixed Air Outlet, !- Air Inlet Node Name
- Split TNW Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TSE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TSE Mixed Air Outlet, !- Air Inlet Node Name
- Split TSE Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TNE Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TNE Mixed Air Outlet, !- Air Inlet Node Name
- Split TNE Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TN1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TN1 Mixed Air Outlet, !- Air Inlet Node Name
- Split TN1 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TN2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TN2 Mixed Air Outlet, !- Air Inlet Node Name
- Split TN2 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TS1 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TS1 Mixed Air Outlet, !- Air Inlet Node Name
- Split TS1 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
- Fan:OnOff,
- Split TS2 Supply Fan, !- Name
- All On, !- Availability Schedule Name
-0.55575, !- Fan Total Efficiency
-622.5, !- Pressure Rise {Pa}
- autosize, !- Maximum Flow Rate {m3/s}
-0.855, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- Split TS2 Mixed Air Outlet, !- Air Inlet Node Name
- Split TS2 Supply Fan Outlet, !- Air Outlet Node Name
- , !- Fan Power Ratio Function of Speed Ratio Curve Name
- , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
- General; !- End-Use Subcategory
-
-!No PV for this case
-!- =========== ALL OBJECTS IN CLASS: REPORT METERFILEONLY ===========
-
- Output:Meter:MeterFileOnly,Electricity:Facility,Hourly;
-
- Output:Meter:MeterFileOnly,ElectricityNet:Facility,Hourly;
-
- Output:Meter:MeterFileOnly,Gas:Facility,Hourly;
-
-!- =========== ALL OBJECTS IN CLASS: REPORT ===========
-
- Output:Surfaces:Drawing,DXF,RegularPolyline;
-
- Output:Surfaces:List,Details;
-
-!- =========== ALL OBJECTS IN CLASS: REPORT:TABLE:STYLE ===========
-
- OutputControl:Table:Style,
- CommaAndHTML; !- Column Separator
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:REPORTINGTOLERANCES ===========
-
-
-
-OutputControl:ReportingTolerances,
- 0.556, !- Tolerance for Time Heating Setpoint Not Met {deltaC}
- 0.556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC}
-
-!- =========== ALL OBJECTS IN CLASS: REPORT:TABLE:PREDEFINED ===========
-
-
- Output:Table:SummaryReports,
- AllSummaryAndMonthly; !- Report 1 Name
-
- Output:Table:Monthly,
- NameHolderMonthlySummary TaskPurpose ProgressIndicator, !- Name ProgressIndicator,ForDetermination2019, ...
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary CodeName ASHRAE901, !- Name ASHRAE901, ASHRAE1891, IECC, Title24, ORSC, IGCC, ...
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary CodeYear 2019, !- Name all years for ASHRAE90.1, IECC, ASHRAE189.1
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary CodeAmendment NoneAmend, !- Name StateAmend,EEM, NoneAmend for national or state without amendment
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary PrototypeName ApartmentMidRise, !- Name 16 Prototypes
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary TaskScope National, !- Name National, State, City
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
-
- Output:Table:Monthly,
- NameHolderMonthlySummary State National, !- Name National for national analysis, NewYork, Utah,... for state analysis, or city name for city analysis. Spell out the name of the state without space between words
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary ClimateZone 6A, !- Name 0-8
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
- Output:Table:Monthly,
- NameHolderMonthlySummary RepresentCity USA_MN_Rochester, !- Name representative city like Honolulu for national, for each state, for city analysis. this is not the city of the weather file. The weather city will be extracted from epw file
- 3, !- Digits After Decimal
- Site Outdoor Air Drybulb, !- Variable or Meter 1 Name
- SumOrAverage, !- Aggregation Type for Variable or Meter 1
- Heating:Gas, !- Variable or Meter 2 Name
- SumOrAverage; !- Aggregation Type for Variable or Meter 2
-
-
-
-!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE ===========
-
-! Output:Variable,*,Site Outdoor Air Drybulb Temperature,Hourly;
-! Output:Variable,*,Site Outdoor Air Wetbulb Temperature,Hourly;
-! Output:Variable,OCC_APT_SCH,Schedule Value,Hourly;
-! Output:Variable,OCC_OFF_SCH,Schedule Value,Hourly;
-!
-!! outdoor air flow rate
-!
-! Output:Variable,Split Office Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GSW Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GNW Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GNE Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GN1 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GN2 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GS1 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GS2 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MSW Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MNW Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MSE Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MNE Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MN1 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MN2 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MS1 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MS2 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TSW Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TNW Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TSE Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TNE Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TN1 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TN2 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TS1 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TS2 Outside Air Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-!
-!! return Air T
-!
-! Output:Variable,Split Office Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GSW Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GNW Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GNE Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GN1 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GN2 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GS1 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split GS2 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MSW Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MNW Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MSE Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MNE Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MN1 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MN2 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MS1 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split MS2 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TSW Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TNW Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TSE Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TNE Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TN1 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TN2 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TS1 Air Loop Inlet, System Node Temperature,Hourly;
-! Output:Variable,Split TS2 Air Loop Inlet, System Node Temperature,Hourly;
-!
-!! return Air T Wetbulb
-!
-! Output:Variable,Split Office Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GSW Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GNW Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GNE Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GN1 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GN2 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GS1 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GS2 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MSW Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MNW Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MSE Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MNE Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MN1 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MN2 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MS1 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MS2 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TSW Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TNW Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TSE Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TNE Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TN1 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TN2 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TS1 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TS2 Air Loop Inlet, System Node Wetbulb Temperature,Hourly;
-!
-!! return Air T flow rate
-!
-! Output:Variable,Split Office Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GSW Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GNW Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GNE Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GN1 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GN2 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GS1 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GS2 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MSW Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MNW Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MSE Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MNE Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MN1 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MN2 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MS1 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MS2 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TSW Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TNW Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TSE Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TNE Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TN1 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TN2 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TS1 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TS2 Air Loop Inlet, System Node Standard Density Volume Flow Rate,Hourly;
-!
-!! supply Air T
-!
-! Output:Variable,Split Office Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GSW Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GNW Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GNE Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GN1 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GN2 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GS1 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split GS2 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MSW Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MNW Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MSE Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MNE Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MN1 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MN2 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MS1 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split MS2 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TSW Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TNW Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TSE Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TNE Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TN1 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TN2 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TS1 Air Loop Outlet, System Node Temperature,Hourly;
-! Output:Variable,Split TS2 Air Loop Outlet, System Node Temperature,Hourly;
-!
-!! supply Air T Wetbulb
-!
-! Output:Variable,Split Office Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GSW Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GNW Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GNE Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GN1 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GN2 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GS1 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split GS2 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MSW Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MNW Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MSE Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MNE Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MN1 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MN2 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MS1 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split MS2 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TSW Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TNW Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TSE Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TNE Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TN1 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TN2 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TS1 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-! Output:Variable,Split TS2 Air Loop Outlet, System Node Wetbulb Temperature,Hourly;
-!
-!! supply Air T flow rate
-!
-! Output:Variable,Split Office Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GSW Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GNW Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GNE Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GN1 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GN2 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GS1 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split GS2 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MSW Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MNW Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MSE Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MNE Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MN1 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MN2 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MS1 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split MS2 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TSW Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TNW Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TSE Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TNE Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TN1 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TN2 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TS1 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-! Output:Variable,Split TS2 Air Loop Outlet, System Node Standard Density Volume Flow Rate,Hourly;
-!
-! ! coil load
-!
-! Output:Variable,*,Air System Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J
-! Output:Variable,*,Air System Heating Coil Total Heating Energy,hourly; !- HVAC Sum J
-!
-! ! fan (52) and pump (2)
-!
-! Output:Variable,*,Fan Electric Power,hourly; !- HVAC Average W
-! Output:Variable,*,Pump Electric Power,hourly; !- HVAC Average W
-! Output:Variable,*,Humidifier Electric Power,hourly; !- HVAC Average W
-!
-! ! SHW
-!
-! Output:Variable,*,Water Heater Heating Rate,Hourly; ! The average heating rate supplied by the heater element or burner.
-!
-!
-! ! Utility and Submeter
-!
-! Output:Meter,Electricity:Facility,Hourly;
-! Output:Meter,Gas:Facility,Hourly;
-! Output:Meter,InteriorLights:Electricity,Hourly;
-! Output:Meter,ExteriorLights:Electricity,Hourly;
-! Output:Meter,InteriorEquipment:Electricity,Hourly;
-! Output:Meter,ExteriorEquipment:Electricity,Hourly;
-! Output:Meter,Fans:Electricity,Hourly;
-! Output:Meter,Pumps:Electricity,Hourly;
-! Output:Meter,Heating:Electricity,Hourly;
-! Output:Meter,Cooling:Electricity,Hourly;
-! Output:Meter,HeatRejection:Electricity,Hourly;
-! Output:Meter,Humidifier:Electricity,Hourly;
-! Output:Meter,HeatRecovery:Electricity,Hourly;
-! Output:Meter,DHW:Electricity,Hourly;
-! Output:Meter,Cogeneration:Electricity,Hourly;
-! Output:Meter,Refrigeration:Electricity,Hourly;
-! Output:Meter,WaterSystems:Electricity,Hourly;
-!
-! Output:Meter,InteriorLights:Gas,Hourly;
-! Output:Meter,ExteriorLights:Gas,Hourly;
-! Output:Meter,InteriorEquipment:Gas,Hourly;
-! Output:Meter,ExteriorEquipment:Gas,Hourly;
-! Output:Meter,Fans:Gas,Hourly;
-! Output:Meter,Pumps:Gas,Hourly;
-! Output:Meter,Heating:Gas,Hourly;
-! Output:Meter,Cooling:Gas,Hourly;
-! Output:Meter,HeatRejection:Gas,Hourly;
-! Output:Meter,Humidifier:Gas,Hourly;
-! Output:Meter,HeatRecovery:Gas,Hourly;
-! Output:Meter,DHW:Gas,Hourly;
-! Output:Meter,Cogeneration:Gas,Hourly;
-! Output:Meter,Refrigeration:Gas,Hourly;
-! Output:Meter,WaterSystems:Gas,Hourly;
-!
-! ! coil load
-!
-! ! Output:Variable,*,Cooling Coil Electric Energy,hourly; !- HVAC Sum J ! 24 outputs
-! ! Output:Variable,*,Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J ! 24 outputs J is 3600 time of W
-! ! Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; !- HVAC Average W ! 24 outputs W is 1/3600 of J
-! ! Output:Variable,*,Air System Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J ! 24 outputs {Air System Cooling Coil Total Cooling Energy} which is the same as {Cooling Coil Total Cooling Energy}
-! ! Output:Variable,*,Air System DX Cooling Coil Electric Energy,hourly; !- HVAC Sum J ! 24 outputs {Air System DX Cooling Coil Electric Energy} the same as {Cooling Coil Electric Energy}
-!
-! ! Output:Variable,*,Heating Coil Electric Energy,hourly; !- HVAC Sum J ! 24 outputs all are 0s
-! ! Output:Variable,*,Heating Coil Heating Energy,hourly; !- HVAC Sum J ! no outputs
-! ! Output:Variable,*,Heating Coil Heating Rate,hourly; !- HVAC Average W ! no outputs
-! ! Output:Variable,*,Air System Heating Coil Total Heating Energy,hourly; !- HVAC Sum J ! 24 outputs
-! ! Output:Variable,*,Air System DX Heating Coil Electric Energy,hourly; !- HVAC Sum J ! 24 outputs but all are 0s
-
-
-!- =========== ALL OBJECTS IN CLASS: ZONEVENTILATION:WINDANDSTACKOPENAREA ===========
-
- ZoneVentilation:WindandStackOpenArea,
- G SW Apartment Sliding Door Ventilation, !- Name
- G SW Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- G NW Apartment Sliding Door Ventilation, !- Name
- G NW Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- G NE Apartment Sliding Door Ventilation, !- Name
- G NE Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- G N1 Apartment Sliding Door Ventilation, !- Name
- G N1 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- G N2 Apartment Sliding Door Ventilation, !- Name
- G N2 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- G S1 Apartment Sliding Door Ventilation, !- Name
- G S1 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- G S2 Apartment Sliding Door Ventilation, !- Name
- G S2 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M SW Apartment Sliding Door Ventilation, !- Name
- M SW Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M NW Apartment Sliding Door Ventilation, !- Name
- M NW Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M SE Apartment Sliding Door Ventilation, !- Name
- M SE Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M NE Apartment Sliding Door Ventilation, !- Name
- M NE Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M N1 Apartment Sliding Door Ventilation, !- Name
- M N1 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M N2 Apartment Sliding Door Ventilation, !- Name
- M N2 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M S1 Apartment Sliding Door Ventilation, !- Name
- M S1 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- M S2 Apartment Sliding Door Ventilation, !- Name
- M S2 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T SW Apartment Sliding Door Ventilation, !- Name
- T SW Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T NW Apartment Sliding Door Ventilation, !- Name
- T NW Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T SE Apartment Sliding Door Ventilation, !- Name
- T SE Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T NE Apartment Sliding Door Ventilation, !- Name
- T NE Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T N1 Apartment Sliding Door Ventilation, !- Name
- T N1 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T N2 Apartment Sliding Door Ventilation, !- Name
- T N2 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 0, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T S1 Apartment Sliding Door Ventilation, !- Name
- T S1 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- ZoneVentilation:WindandStackOpenArea,
- T S2 Apartment Sliding Door Ventilation, !- Name
- T S2 Apartment, !- Zone Name
- 0.0374, !- Opening Area {m2}
- Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name
- autocalculate, !- Opening Effectiveness {dimensionless}
- 180, !- Effective Angle {deg}
- 6.0957, !- Height Difference {m}
- autocalculate, !- Discharge Coefficient for Opening
- 18.89, !- Minimum Indoor Temperature {C}
- , !- Minimum Indoor Temperature Schedule Name
- 25.56, !- Maximum Indoor Temperature {C}
- , !- Maximum Indoor Temperature Schedule Name
- -100, !- Delta Temperature {deltaC}
- , !- Delta Temperature Schedule Name
- 15.56, !- Minimum Outdoor Temperature {C}
- , !- Minimum Outdoor Temperature Schedule Name
- 26.67, !- Maximum Outdoor Temperature {C}
- , !- Maximum Outdoor Temperature Schedule Name
- 40; !- Maximum Wind Speed {m/s}
-
- Schedule:Compact,
- Sliding_Doors_Ventilation_Availability_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: WinterDesignDay SummerDesignDay, !- Field 2
- Until: 24:00,0, !- Field 3
- For: Allotherdays, !- Field 5
- Until: 6:00,0, !- Field 6
- Until: 22:00,1, !- Field 8
- Until: 24:00,0; !- Field 10
-
-
-
-
-
-EnergyManagementSystem:Sensor,
- M_S1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name
- M S1 APARTMENT, !- Output:Variable or Output:Meter Index Key Name
- Zone Ventilation Standard Density Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
-EnergyManagementSystem:Sensor,
- M_N1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name
- M N1 APARTMENT, !- Output:Variable or Output:Meter Index Key Name
- Zone Ventilation Standard Density Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
-EnergyManagementSystem:Actuator,
- S_Apartment_CLGSETP_Actuator, ! Name
- S CLGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:Actuator,
- S_Apartment_HTGSETP_Actuator, ! Name
- S HTGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:Actuator,
- N_Apartment_CLGSETP_Actuator, ! Name
- N CLGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:Actuator,
- N_Apartment_HTGSETP_Actuator, ! Name
- N HTGSETP_APT_SCH, !- Actuated Component Unique Name
- Schedule:Compact, ! Actuated Component Type
- Schedule Value; ! Actuated Component Control Type
-
-EnergyManagementSystem:ProgramCallingManager,
- Door_Switch_Enabled_Thermostat_Reset, ! Name
- BeginTimestepBeforePredictor, ! EnergyPlus Model Calling Point
- Door_Switch_Enabled_Thermostat_Reset_Program_N_Apartments,
- Door_Switch_Enabled_Thermostat_Reset_Program_S_Apartments;
-
-
-EnergyManagementSystem:Program,
- Door_Switch_Enabled_Thermostat_Reset_Program_S_Apartments, ! Name
- IF (M_S1_Apartment_Sliding_Door_Ventilation_Sensor > 0),
- SET S_Apartment_CLGSETP_Actuator = 32.22,
- SET S_Apartment_HTGSETP_Actuator = 12.78,
- ELSE,
- SET S_Apartment_CLGSETP_Actuator = null,
- SET S_Apartment_HTGSETP_Actuator = null,
- ENDIF;
-
-EnergyManagementSystem:Program,
- Door_Switch_Enabled_Thermostat_Reset_Program_N_Apartments, ! Name
- IF (M_N1_Apartment_Sliding_Door_Ventilation_Sensor > 0),
- SET N_Apartment_CLGSETP_Actuator = 32.22,
- SET N_Apartment_HTGSETP_Actuator = 12.78,
- ELSE,
- SET N_Apartment_CLGSETP_Actuator = null,
- SET N_Apartment_HTGSETP_Actuator = null,
- ENDIF;
-
-
-
-
diff --git a/hub/data/schedules/idf_files/ASHRAE901_Hospital_STD2019_Rochester.idf b/hub/data/schedules/idf_files/ASHRAE901_Hospital_STD2019_Rochester.idf
deleted file mode 100644
index c1ef3739..00000000
--- a/hub/data/schedules/idf_files/ASHRAE901_Hospital_STD2019_Rochester.idf
+++ /dev/null
@@ -1,31092 +0,0 @@
-
-!The DOE Prototype Building Models were developed by Pacific Northwest National Laboratory (PNNL), under contract with the U.S.
-!Department of Energy (DOE). These building models were derived from DOE's Commercial Reference Building Models with modifications
-!based on input from the ASHRAE Standard 90.1 committee, the Advanced Energy Design Guide series, and building industry experts. The
-!prototypes models were developed to quantify energy saving impacts from newly published editions of ASHRAE Standard 90.1, 189.1, IECC,
-!and other energy codes and standards. The basic building descriptions can be found in the Scorecards posted at www.energycodes.gov
-!website. The recommended citation of the prototype models is
-!
-!DOE and PNNL. 2020. Commercial Prototype Building Models, Richland, WA, Pacific Northwest National Laboratory. Available at https://www.energycodes.gov/development/commercial/prototype_models.
-!
-!Detailed descriptions of the prototype model development and addenda modeling strategies can be found in the following reports:
-!DOE, 2020. Preliminary Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2019. Report prepared by Zhang, J., M. Rosenberg, J.
-!Lerond, Y. Xie, Nambia, C., Y. Chen, R. Hart, M. Halverson, D. Maddox, and S. Goel, Richland, WA, Pacific Northwest National Laboratory.
-!
-!Zhang, J., Y. Chen, Y. Xie, M. Rosenberg, R. Hart. Energy and Energy Cost Savings Analysis of the 2018 IECC for Commercial Buildings.
-!2018. PNNL-28125. Richland, WA: Pacific Northwest National Laboratory.
-!
-!DOE. 2017. Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2016. Prepared by Athalye, R.A, M.A. Halverson, M.I. Rosenberg, B. Liu,
-!J. Zhang, R. Hart, V.V. Mendon, S. Goel, Y. Chen, Y. Xie, and M. Zhao, Richland, WA, Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/02202018_Standard_90.1-2016_Determination_TSD.pdf.
-!
-!Zhang, J., Y. Xie, R.A. Athalye, J. Zhuge, M. Rosenberg, R. Hart, and B. Liu. Energy and Energy Cost Savings Analysis of the 2015 IECC
-!for Commercial Buildings. 2015. PNNL-24269 Rev. 1. Richland, WA: Pacific Northwest National
-!Laboratory. https://www.energycodes.gov/sites/default/files/documents/2015_IECC_Commercial_Analysis.pdf.
-!
-!Halverson M.A., M.I. Rosenberg, W. Wang, J. Zhang, V.V. Mendon, R.A. Athalye, Y. Xie, R. Hart, S. Goel, 2014. ANSI/ASHRAE/IES Standard
-!90.1-2013 Determination of Energy Savings: Quantitative Analysis, PNNL-23479. Richland, WA: Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/901-2013_finalCommercialDeterminationQuantitativeAnalysis_TSD_0.pdf.
-!
-!Goel S., R.A. Athalye, W. Wang, J. Zhang, M.I. Rosenberg, Y. Xie, and R. Hart, et al. 2014. Enhancements to ASHRAE Standard 90.1
-!Prototype Building Models. PNNL-23269. Richland, WA: Pacific Northwest National Laboratory. https://www.pnnl.gov/main/publications/external/technical_reports/PNNL-23269.pdf.
-!
-!Zhang J., R.A. Athalye, R. Hart, M.I. Rosenberg, Y. Xie, S. Goel, and V.V. Mendon, et al. 2013. Energy and Energy Cost Savings Analysis
-!of the IECC for Commercial Buildings. PNNL-22760. Richland, WA: Pacific Northwest National Laboratory. http://www.pnnl.gov/main/publications/external/technical_reports/PNNL-22760.pdf.
-!
-!Thornton B.A., M.I. Rosenberg, E.E. Richman, W. Wang, Y. Xie, J. Zhang, H. Cho, VV Mendon, R.A. Athalye, and B. Liu. 2011. Achieving
-!the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010. PNNL-20405. Richland, WA: Pacific Northwest National
-!Laboratory. https://www.energycodes.gov/sites/default/files/documents/BECP_Energy_Cost_Savings_STD2010_May2011_v00.pdf.
-!
-!
-! WeatherFile: USA_MN_Rochester.Intl.AP.726440_TMY3.epw
-
-
-
-! GPARM parameters as input:
-! Case = ASHRAE901_Hospital_STD2019_Rochester
-! SelectedCase =
-! basement_tempt = Zone6A_nonres_R10_Hospital_Rochester_STD2016_out.idf
-! annual_run = no
-! avg_oa_tempt_ip = 43.475
-! maxdiff_oa_tempt_ip = 60.3
-! ext_wall_type = MassWall
-! res_ext_wall_ufactor = 0.403156673
-! nonres_ext_wall_ufactor = 0.45426104
-! roof_type = MetalDeckRoof
-! nonres_roof_ufactor = 0.181704416
-! roof_emissivity = 0.9
-! roof_solar_absorp = 0.7
-! res_window = Window_U_0.38_SHGC_0.41
-! nonres_window = Window_U_0.38_SHGC_0.41
-! res_east_window = Window_U_0.42_SHGC_0.40
-! nonres_east_window = Window_U_0.42_SHGC_0.40
-! sidelighting_control = yes_AY
-! exterior_lights_watts = 9863
-! cc_sa_humidity = 0.0085
-! condenser_pump_head = 148556.6249
-! chilledwater_pump_head = 44761.27683
-! chilledwater_pump_secondary_head = 134283.8305
-! LPD1_Office = 6.888902667
-! LPD2_ER = 15.06947458
-! LPD3_Record = 8.794114811
-! LPD4_Corridor = 7.642376396
-! LPD5_NurseStn_Lobby1 = 11.17293901
-! LPD6_OR = 24.32643754
-! LPD7_IC = 13.45488802
-! LPD8_NursStn = 12.59377519
-! LPD9_NurseStn_Lobby2 = 10.46252093
-! LPD10_Patient_Room = 7.319459084
-! LPD11_Physical_Therapy = 9.795158479
-! LPD12_Lab = 14.31600085
-! LPD13_Radiology = 10.11807579
-! LPD14_Dining = 4.305564167
-! LPD15_Kitchen = 11.73266235
-! avg_oa_tempt = 6.375
-! maxdiff_oa_tempt = 33.5
-! infil = 0.00056896
-! oa_basement = 0.000368277
-! oa_exam = 0.002370219
-! oa_office1_flr1 = 0.00048257
-! oa_lobby = 0.000338645
-! oa_corridor = 0.000304781
-! oa_nurse = 0.000338645
-! oa_or = 0.003555179
-! oa_ic = 0.002370237
-! oa_patient = 0.002370237
-! oa_therapy = 0.000380976
-! oa_lab = 0.001168327
-! oa_radiology = 0.000380976
-! oa_dining = 0.001295319
-! oa_kitchen = 0.00080005
-! oa_office_flr5 = 0.00048257
-! tsa_exam = 0.01422212
-! tsa_or = 0.017776903
-! tsa_ic = 0.007111113
-! tsa_patient = 0.007111113
-! SAT_reset_switch = Yes
-! SAT_reset_T = 15.6
-! VAV_ICU_ERV = Yes
-! VAV_PATRMS_ERV = Yes
-! Economizer_NoHumidification = DifferentialDryBulb
-! economizer_lockout = LockoutWithHeating
-! eco_max_temp_limit = na
-! heating_damper_act = ReverseWithLimits
-! add_ck_vav_1 = Yes
-! add_ck_vav_2 = Yes
-! basement_mdp = 0.2
-! corridor_flr_1_mdp = 0.2
-! corridor_flr_2_mdp = 0.2
-! er_nursestn_lobby_flr_1_mdp = 0.2
-! icu_nursestn_lobby_flr_2_mdp = 0.2
-! lobby_records_flr_1_mdp = 0.2
-! office1_mult4_flr_1_mdp = 0.2
-! or_nursestn_lobby_flr_2_mdp = 0.2
-! corridor_flr_5_mdp = 0.2
-! corridor_nw_flr_3_mdp = 0.2
-! corridor_nw_flr_4_mdp = 0.2
-! corridor_se_flr_3_mdp = 0.2
-! corridor_se_flr_4_mdp = 0.2
-! dining_flr_5_mdp = 0.2
-! nursestn_lobby_flr_3_mdp = 0.2
-! nursestn_lobby_flr_4_mdp = 0.2
-! nursestn_lobby_flr_5_mdp = 0.2
-! office1_flr_5_mdp = 0.2
-! office2_mult5_flr_5_mdp = 0.2
-! office3_flr_5_mdp = 0.2
-! office4_mult6_flr_5_mdp = 0.2
-! phystherapy_flr_3_mdp = 0.2
-! radiology_flr_4_mdp = 0.2
-! vav_1_oaf = autosize
-! vav_2_oaf = autosize
-! Transfer_Air = kitchen_only
-! BLDG_ELEVATORS_LIGHTS_FAN_SCH = ELEV_LIGHT_FAN_SCH_ADD_DF
-! BLDG_ELEVATORS_LIGHTS_FAN_POWER = 501
-! bsmt_new = National_Hospital_ASHRAE901_STD2016_Zone6A_nonres_MN-Rochester-MN_out.idf
-! osc_key_wall = surfPropOthSdCoefBasementAvgWall
-! osc_key_floor = surfPropOthSdCoefBasementAvgFloor
-! orientation = -90
-! BLDG_EQUIP_SCH = BLDG_EQUIP_SCH_ADV
-! minSysAirFlowRatio = 0.5
-! VAVReheat_flag = yes
-! VAVReheat_minAirFrac = 0.5
-! PumpCurve_flag = pump_ride_on_curve
-! pv_generator = no
-! pv_surface_area = 0
-! STD189_overhang = no
-! overhang_pf_ew_TBD = 0
-! swh_et = 0.802764686
-! swh_ua = 15.60100708
-! ext_lgt_sch = Exterior_Lgt_ALWAYS_ON
-! VAV_1_ERV = Yes
-! VAV_2_ERV = No
-! VAV_ER_ERV = No
-! VAV_OR_ERV = No
-! VAV_LABS_ERV = No
-! VAV_ICU_ERV_power = 1539.37265225
-! VAV_PATRMS_ERV_power = 3273.229555
-! VAV_1_ERV_power = 3154.26375
-! VAV_2_ERV_power = 3263.9695
-! VAV_ER_ERV_power = 713.572987
-! VAV_OR_ERV_power = 1614.071075
-! VAV_LABS_ERV_power = 493.9029
-! LTG_SCH_SET = LTG_SET_STD2013
-! transformer_size = 500000
-! transformer_eff = 0.991
-! freezer_power = 555
-! refrigerator_power = 470
-! swh_et_booster = 1
-! swh_ua_booster = 1.053159296
-! swh_et_laundry = 0.803988738
-! swh_ua_laundry = 11.25413987
-! pipe_heat_loss = 17147.66
-! evap_fan_power_case1 = 19.71428571
-! evap_fan_power_case2 = 19.14285714
-! walkin_lighting_sch = walkin_occ_lght_sch
-! add_as = yes
-! preheatcoil_exists = yes
-! AddendumAF_TowerFan = Yes
-! kitchen_exh_fan_power = 1219
-! skip_EMSprogram = yes
-! BoilerAM = Yes
-! Wfile_TMY3 = USA_MN_Rochester.Intl.AP.726440_TMY3.epw
-! loadProfile = No
-! addendum_DI = yes
-! addendum_DV = yes
-! receptacle_ctrl_occ_reduction_frac = 0.974001829
-! receptacle_ctrl_unocc_reduction_frac = 0.873170566
-! OR_VAV_zone_mdp = 0.2
-! HOTW_ST_Reset = No
-! CHW_ST_Reset = No
-! CodeName = ASHRAE90.1_STD2019
-! CZ_City_Old = Burlington
-! CZ_Label = 6A
-! con_swingdoor_r = 0.475963827
-! con_overheaddoor_r = 0.567741935
-! CHW_deltaT = 8.33
-! HOTW_PumpCurve_flag = pump_ride_on_curve
-! nonres_window_u_factor = 0.34
-! nonres_window_shgc = 0.38
-! nonresLSG = 1.1
-! res_window_u_factor = 0.34
-! res_window_shgc = 0.38
-! resLSG = 1.1
-! nonres_east_window_u_factor = 0.34
-! nonres_east_window_shgc = 0.38
-! nonres_eastLSG = 1.1
-! res_east_window_u_factor = 0.34
-! res_east_window_shgc = 0.38
-! res_eastLSG = 1.1
-! AnalysisPurpose = ProgressIndicator
-! AnalysisCodeName = ASHRAE901
-! AnalysisCodeYear = 2019
-! AnalysisAmendment = NoneAmend
-! AnalysisPrototype = Hospital
-! AnalysisScope = National
-! AnalysisState = National
-! AnalysisClimateZone = 6A
-! AnalysisCity = USA_MN_Rochester
-! var_Ffactor_IP = 0.51
-! var_Cfactor_IP = 0.092
-! cop_walkin_freezer = 2.3
-! cop_walkin_cooler = 6.93
-
-
-
-
-
-! specify overhang_pf for 1891 codes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: VERSION ===========
-
- Version,9.0;
-
-!- =========== ALL OBJECTS IN CLASS: BUILDING ===========
-
-
- Building,
- Hospital, !- Name
- -90, !- North Axis {deg}
- City, !- Terrain
- 0.0400, !- Loads Convergence Tolerance Value
- 0.2000, !- Temperature Convergence Tolerance Value {deltaC}
- FullInteriorAndExterior, !- Solar Distribution
- 25, !- Maximum Number of Warmup Days
- 6; !- Minimum Number of Warmup Days
-
-!- =========== ALL OBJECTS IN CLASS: TIMESTEP IN HOUR ===========
-
- Timestep,6;
-
-!- =========== ALL OBJECTS IN CLASS: SYSTEM CONVERGENCE LIMITS ===========
-
- ConvergenceLimits,
- 1, !- Minimum System Timestep {minutes}
- 20; !- Maximum HVAC Iterations
-
-!- =========== ALL OBJECTS IN CLASS: INSIDE CONVECTION ALGORITHM ===========
-
- SurfaceConvectionAlgorithm:Inside,TARP;
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE CONVECTION ALGORITHM ===========
-
- SurfaceConvectionAlgorithm:Outside,TARP;
-
-!- =========== ALL OBJECTS IN CLASS: SOLUTION ALGORITHM ===========
-
- HeatBalanceAlgorithm,ConductionTransferFunction;
-
-!- =========== ALL OBJECTS IN CLASS: SHADOWING CALCULATIONS ===========
-
- ShadowCalculation,
- AverageOverDaysInFrequency, !- Calculation Method
- 30; !- Calculation Frequency
-
-!- =========== ALL OBJECTS IN CLASS: RUN CONTROL ===========
-
- SimulationControl,
- Yes, !- Do Zone Sizing Calculation
- Yes, !- Do System Sizing Calculation
- Yes, !- Do Plant Sizing Calculation
-No, !- Run Simulation for Sizing Periods
-YES; !- Run Simulation for Weather File Run Periods
-
-!- =========== ALL OBJECTS IN CLASS: RUNPERIOD ===========
-
- RunPeriod,
- , !- Name
- 1, !- Begin Month
- 1, !- Begin Day of Month
- , !- Begin Year
- 12, !- End Month
- 31, !- End Day of Month
- , !- End Year
- Sunday, !- Day of Week for Start Day
- No, !- Use Weather File Holidays and Special Days
- No, !- Use Weather File Daylight Saving Period
- No, !- Apply Weekend Holiday Rule
- Yes, !- Use Weather File Rain Indicators
- Yes; !- Use Weather File Snow Indicators
-
-!- =========== ALL OBJECTS IN CLASS: SPECIALDAYPERIOD ===========
-
-! US National Holidays
-
-
- RunPeriodControl:SpecialDays,
- New Years Day, !- Name
- January 1, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Veterans Day, !- Name
- November 11, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Christmas, !- Name
- December 25, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Independence Day, !- Name
- July 4, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- MLK Day, !- Name
- 3rd Monday in January, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Presidents Day, !- Name
- 3rd Monday in February, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Memorial Day, !- Name
- Last Monday in May, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Labor Day, !- Name
- 1st Monday in September, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Columbus Day, !- Name
- 2nd Monday in October, !- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
- RunPeriodControl:SpecialDays,
- Thanksgiving, !- Name
- 4th Thursday in November,!- Start Date
- 1, !- Duration {days}
- Holiday; !- Special Day Type
-
-!- =========== ALL OBJECTS IN CLASS: DAYLIGHTSAVINGPERIOD ===========
-
-! Daylight Saving Period in US
-
-
- RunPeriodControl:DaylightSavingTime,
- 2nd Sunday in March, !- Start Date
- 1st Sunday in November; !- End Date
-
-!- =========== ALL OBJECTS IN CLASS: LOCATION ===========
-! Site:Location and design-day objects created by:
-! ../../_p.bin/ddy2idf /projects/bigsim/weather/EnergyPlus/tmy3.new/all/USA_MN_Rochester.Intl.AP.726440_TMY3.ddy
-!
-Site:Location,
- Rochester International Arpt_MN_USA Design_Conditions, !- Site:Location Name
- 43.90, !- Latitude {N+ S-}
- -92.50, !- Longitude {W- E+}
- -6.00, !- Time Zone Relative to GMT {GMT+/-}
- 398.00; !- Elevation {m}
-
-SizingPeriod:DesignDay,
- Rochester International Arpt Ann Htg 99.6% Condns DB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -26.2, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- -26.2, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily WetBulb Temperature Range {deltaC}
- 96634., !- Barometric Pressure {Pa}
- 5.7, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 310, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
-SizingPeriod:DesignDay,
- Rochester International Arpt Ann Clg .4% Condns DB=>MWB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 31.2, !- Maximum Dry-Bulb Temperature {C}
- 10.6, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 23.1, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily WetBulb Temperature Range {deltaC}
- 96634., !- Barometric Pressure {Pa}
- 6.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 200, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.404, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 2.226; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
-
-!- =========== ALL OBJECTS IN CLASS: WATER MAINS TEMPERATURES ===========
-
-
- Site:WaterMainsTemperature,
- Correlation, !- Calculation Method
- , !- Temperature Schedule Name
-6.375, !- Annual average outdoor air temperature {C}
-33.5; !- Maximum difference in monthly average outdoor air temperatures {C}
-
-
-!- =========== ALL OBJECTS IN CLASS: Site:GroundTemperature:FCfactorMethod ===========
-
-Site:GroundTemperature:FCfactorMethod,
-7.4, !- January Ground Temperature {C}
--0.0, !- February Ground Temperature {C}
--7.6, !- March Ground Temperature {C}
--12.6, !- April Ground Temperature {C}
--7.7, !- May Ground Temperature {C}
-0.3, !- June Ground Temperature {C}
-7.0, !- July Ground Temperature {C}
-14.2, !- August Ground Temperature {C}
-19.2, !- September Ground Temperature {C}
-20.9, !- October Ground Temperature {C}
-20.0, !- November Ground Temperature {C}
-15.4; !- December Ground Temperature {C}
-
-
-!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR-R ===========
-
- Material:NoMass,
- Opaque Door panel_con, !- Name
- MediumRough, !- Roughness
- 0.475963827, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Overhead Door_con Panel, !- Name
- MediumRough, !- Roughness
- 0.567741935, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION ===========
-
- Construction,
- Swinging Door_con, !- Name
- Opaque Door panel_con; !- Outside Layer
-
- Construction,
- Overhead Door_con, !- Name
- Overhead Door_con Panel; !- Outside Layer
-
-!- =========== Opaque Constructions ===========
-
-
-!
-!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR ===========
-
- Material,
- Std Wood 6inch, !- Name
- MediumSmooth, !- Roughness
- 0.15, !- Thickness {m}
- 0.12, !- Conductivity {W/m-K}
- 540.0000, !- Density {kg/m3}
- 1210, !- Specific Heat {J/kg-K}
- 0.9000000, !- Thermal Absorptance
- 0.7000000, !- Solar Absorptance
- 0.7000000; !- Visible Absorptance
-
- Material,
- AC02 Acoustic Ceiling, !- Name
- MediumSmooth, !- Roughness
- 1.2700000E-02, !- Thickness {m}
- 5.7000000E-02, !- Conductivity {W/m-K}
- 288.0000, !- Density {kg/m3}
- 1339.000, !- Specific Heat {J/kg-K}
- 0.9000000, !- Thermal Absorptance
- 0.7000000, !- Solar Absorptance
- 0.2000000; !- Visible Absorptance
-
- Material,
- F07 25mm stucco, !- Name
- Smooth, !- Roughness
- 0.0254, !- Thickness {m}
- 0.72, !- Conductivity {W/m-K}
- 1856, !- Density {kg/m3}
- 840, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material,
- F08 Metal surface, !- Name
- Smooth, !- Roughness
- 0.0008, !- Thickness {m}
- 45.28, !- Conductivity {W/m-K}
- 7824, !- Density {kg/m3}
- 500; !- Specific Heat {J/kg-K}
-
- Material,
- F08 Metal roof surface, !- Name
- Smooth, !- Roughness
- 0.0008, !- Thickness {m}
- 45.28, !- Conductivity {W/m-K}
- 7824, !- Density {kg/m3}
- 500, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- F12 Asphalt shingles, !- Name
- VeryRough, !- Roughness
- 0.0032, !- Thickness {m}
- 0.04, !- Conductivity {W/m-K}
- 1120, !- Density {kg/m3}
- 1260, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- F13 Built-up roofing, !- Name
- Rough, !- Roughness
- 0.0095, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 1120, !- Density {kg/m3}
- 1460, !- Specific Heat {J/kg-K}
- 0.9, !- Absorptance:Thermal
- 0.7; !- Absorptance:Solar
-
- Material,
- G01 13mm gypsum board, !- Name
- Smooth, !- Roughness
- 0.0127, !- Thickness {m}
- 0.1600, !- Conductivity {W/m-K}
- 800.0000, !- Density {kg/m3}
- 1090.0000, !- Specific Heat {J/kg-K}
- 0.9000, !- Absorptance:Thermal
- 0.7000, !- Absorptance:Solar
- 0.5000; !- Absorptance:Visible
-
- Material,
- G01 16mm gypsum board, !- Name
- MediumSmooth, !- Roughness
- 0.0159, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 1090; !- Specific Heat {J/kg-K}
-
- Material,
- G02 16mm plywood, !- Name
- Smooth, !- Roughness
- 0.0159, !- Thickness {m}
- 0.12, !- Conductivity {W/m-K}
- 544, !- Density {kg/m3}
- 1210; !- Specific Heat {J/kg-K}
-
- Material,
- M14 150mm heavyweight concrete roof, !- Name
- MediumRough, !- Roughness
- 0.1524, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
-
- Material,
- 100mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1016, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
-
- Material,
- 200mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 100mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1016, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 150mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.1524, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- 200mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 2.31, !- Conductivity {W/m-K}
- 2322, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- M10 200mm concrete block wall, !- Name
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 0.72, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 832; !- Specific Heat {J/kg-K}
-
- Material,
- M10 200mm concrete block basement wall, !- Name
- MediumRough, !- Roughness
- 0.2032, !- Thickness {m}
- 1.326, !- Conductivity {W/m-K}
- 1842, !- Density {kg/m3}
- 912; !- Specific Heat {J/kg-K}
-
-
-
-
-
-
-
- Material:NoMass,
- CP02 CARPET PAD, !- Name
- VeryRough, !- Roughness
- 0.21648, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.8; !- Visible Absorptance
-
-
- Material:NoMass,
- Air_Wall_Material, !- Name
- Rough, !- Roughness
- 0.2079491, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7; !- Solar Absorptance
-
-
- Material:NoMass,
- Nonres_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 5.30668495131472,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Absorptance:Thermal
- 0.7, !- Absorptance:Solar
- 0.7; !- Absorptance:Visible
-
- Material:NoMass,
- Res_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Roof_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
- Material:NoMass,
- Nonres_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 1.88434339518544,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Res_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 2.16339123820601,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Exterior_Wall_Insulation, !- Name
- MediumSmooth, !- Roughness
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
- Material:NoMass,
- Nonres_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Res_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Semiheated_Floor_Insulation, !- Name
- MediumSmooth, !- Roughness
-
- 0.0299387330245182,
- !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-
-
-
-
-
- Material:NoMass,
- Std Opaque Door Panel, !- Name
- MediumRough, !- Roughness
- 0.123456790123457, !- (corresponds to default RSI-0.12327 or R-0.7) Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
-!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION ===========
-
- Construction,
- InteriorFurnishings, !- Name
- Std Wood 6inch; !- Outside Layer
-
- Construction,
- Air_Wall, !- Name
- Air_Wall_Material; !- Outside Layer
-
- Construction,
- DropCeiling, !- Name
- AC02 Acoustic Ceiling; !- Outside Layer
-
- Construction,
- OpaqueDoor, !- Name
- Std Opaque Door Panel; !- Outside Layer
-
- Construction,
- AtticRoofDeck, !- Name
- F12 Asphalt shingles, !- Outside Layer
- G02 16mm plywood; !- Layer 2
-
- Construction,
- int_wall, !- Name
- G01 13mm gypsum board, !- Outside Layer
- G01 13mm gypsum board; !- Layer 2
-
- Construction,
- ext_slab_8in_with_carpet,!- Name
- 200mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- ext_slab_8in, !- Name
- 200mm Normalweight concrete floor; !- Outside Layer
-
- Construction,
- ext_slab_6in_with_carpet,!- Name
- 150mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- ext_slab_6in, !- Name
- 150mm Normalweight concrete floor; !- Outside Layer
-
- Construction,
- int_slab_floor, !- Name
- 100mm Normalweight concrete floor, !- Outside Layer
- CP02 CARPET PAD; !- Layer 2
-
- Construction,
- int_slab_ceiling, !- Name
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor; !- Layer 2
-
- Construction,
- basement_wall, !- Name
- M10 200mm concrete block basement wall; !- Outside Layer
-
- Construction,
- int_wood_floor, !- Name
- AC02 Acoustic Ceiling, !- Outside Layer
- G02 16mm plywood, !- Layer 2
- CP02 CARPET PAD; !- Layer 3
-
- Construction,
- ext_soffit_floor, !- Name
- G02 16mm plywood; !- Outside Layer
-
- Construction,
- nonres_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Nonres_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
- Construction,
- res_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Res_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
- Construction,
- semiheated_roof, !- Name
- F13 Built-up roofing, !- Outside Layer
- Semiheated_Roof_Insulation, !- Layer #2
- F08 Metal surface; !- Layer #3
-
-
-
-
- Construction,
- nonres_ext_wall, !- Name
- 200mm Normalweight concrete wall, !- Outside Layer
- Nonres_Exterior_Wall_Insulation, !- Layer #2
- G01 13mm gypsum board; !- Layer #3
-
-
- Construction,
- res_ext_wall, !- Name
- 200mm Normalweight concrete wall, !- Outside Layer
- Res_Exterior_Wall_Insulation, !- Layer #2
- G01 13mm gypsum board; !- Layer #3
-
-
- Construction,
- semiheated_ext_wall, !- Name
- 200mm Normalweight concrete wall, !- Outside Layer
- Semiheated_Exterior_Wall_Insulation, !- Layer #2
- G01 13mm gypsum board; !- Layer #3
-
-
- Construction,
- nonres_floor, !- Name
- Nonres_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- res_floor, !- Name
- Res_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- semiheated_floor, !- Name
- Semiheated_Floor_Insulation, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- CP02 CARPET PAD; !- Layer #2
-
-
- Construction,
- nonres_floor_ceiling, !- Name - reverse ordered layers for nonres_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Nonres_Floor_Insulation; !- Layer #2
-
- Construction,
- res_floor_ceiling, !- Name - reverse ordered layers for res_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Res_Floor_Insulation; !- Layer #2
-
- Construction,
- semiheated_floor_ceiling, !- Name - reverse ordered layers for semiheated_floor
- CP02 CARPET PAD, !- Outside Layer
- 100mm Normalweight concrete floor, !- Layer #1
- Semiheated_Floor_Insulation; !- Layer #2
-
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM ===========
-
-WindowMaterial:SimpleGlazingSystem,
- Nonres Window Glazing Layer, !- Name
- 1.9306084, !- U-Factor {W/m2-K}
- 0.38, !- Solar Heat Gain Coefficient
- 0.418; !- Visible Transmittance
-
-Construction,
- NonresWindow_U_0.34_SHGC_0.38, !- Name
- Nonres Window Glazing Layer; !- Outside Layer
-WindowMaterial:SimpleGlazingSystem,
- Nonres East Glazing Layer, !- Name
- 1.9306084, !- U-Factor {W/m2-K}
- 0.38, !- Solar Heat Gain Coefficient
- 0.418; !- Visible Transmittance
-Construction,
- NonreseastWindow_U_0.34_SHGC_0.38, !- Name
- Nonres East Glazing Layer; !- Outside Layer
-
-!- Res Windows
-
-WindowMaterial:SimpleGlazingSystem,
- Res Window Glazing Layer, !- Name
- 1.9306084, !- U-Factor {W/m2-K}
- 0.38, !- Solar Heat Gain Coefficient
- 0.418; !- Visible Transmittance
-Construction,
- ResWindow_U_0.34_SHGC_0.38, !- Name
- Res Window Glazing Layer; !- Outside Layer
-WindowMaterial:SimpleGlazingSystem,
- Res East Glazing Layer, !- Name
- 1.9306084, !- U-Factor {W/m2-K}
- 0.38, !- Solar Heat Gain Coefficient
- 0.418; !- Visible Transmittance
-Construction,
- ReseastWindow_U_0.34_SHGC_0.38, !- Name
- Res East Glazing Layer; !- Outside Layer
-
-
- Construction:CfactorUndergroundWall,
- Basement_Wall_North_Cfactor, !- Name
- 0.522376, !- C-Factor
- 2.439; !- Height
-
- Construction:CfactorUndergroundWall,
- Basement_Wall_East_Cfactor, !- Name
- 0.522376, !- C-Factor
- 2.439; !- Height
-
- Construction:CfactorUndergroundWall,
- Basement_Wall_South_Cfactor, !- Name
- 0.522376, !- C-Factor
- 2.439; !- Height
-
- Construction:CfactorUndergroundWall,
- Basement_Wall_West_Cfactor, !- Name
- 0.522376, !- C-Factor
- 2.439; !- Height
-
-
-
-!- =========== ALL OBJECTS IN CLASS: ZONE ===========
-
-
- Zone,
- Basement, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 2.4390, !- Ceiling Height {m}
- 9120.2700, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ER_Exam1_Mult4_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 4.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ER_Trauma1_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ER_Exam3_Mult4_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 4.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ER_Trauma2_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ER_Triage_Mult4_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 4.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Office1_Mult4_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 5.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 59.5000, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Lobby_Records_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 6294.9200, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2428.7900, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ER_NurseStn_Lobby_Flr_1, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 5273.9500, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- OR1_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 237.9100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- OR2_Mult5_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 5.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 237.9100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- OR3_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 237.9100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- OR4_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 951.7000, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- IC_PatRoom1_Mult5_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 5.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 89.2100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- IC_PatRoom2_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- IC_PatRoom3_Mult6_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 6.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 89.2100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ICU_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2637.6300, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- ICU_NurseStn_Lobby_Flr_2,!- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2854.5100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2428.7900, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- OR_NurseStn_Lobby_Flr_2, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 4322.2400, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom1_Mult10_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 89.2100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom2_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 148.7100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom3_Mult10_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 86.2600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom4_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 148.7100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom5_Mult10_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 89.2100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PhysTherapy_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2081.8200, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom6_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom7_Mult10_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 86.2600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom8_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- NurseStn_Lobby_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 3866.2500, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Lab_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 1129.4300, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_SE_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2418.8800, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_NW_Flr_3, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2418.8800, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom1_Mult10_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 89.2100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom2_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 148.7100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom3_Mult10_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 86.2600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom4_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 148.7100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom5_Mult10_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 89.2100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Radiology_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2081.8200, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom6_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom7_Mult10_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 10.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 86.2600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- PatRoom8_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 118.9600, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- NurseStn_Lobby_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 3866.2200, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Lab_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 1129.4300, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_SE_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2418.8800, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_NW_Flr_4, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2418.8800, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Dining_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2974.0400, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- NurseStn_Lobby_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 4441.2300, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Kitchen_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 3965.3700, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Office1_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 297.5000, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Office2_Mult5_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 5.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 297.4100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Office3_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 297.4100, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Office4_Mult6_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 6.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 59.5000, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-
-
- Zone,
- Corridor_Flr_5, !- Name
- 0.0000, !- Direction of Relative North {deg}
- 0.0000, !- X Origin {m}
- 0.0000, !- Y Origin {m}
- 0.0000, !- Z Origin {m}
- 1, !- Type
- 1.0000, !- Multiplier
- 4.2683, !- Ceiling Height {m}
- 2141.3200, !- Volume {m3}
- autocalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- YES; !- Part of Total Floor Area
-
-!- =========== ALL OBJECTS IN CLASS: SURFACEGEOMETRY ===========
-
-
- GlobalGeometryRules,
- ULC, !- Starting Vertex Position
- CCW, !- Vertex Entry Direction
- Relative; !- Coordinate System
-
-!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER ===========
-
-
- BuildingSurface:Detailed,
- Basement_Wall_North, !- Name
- Wall, !- Surface Type
- Basement_Wall_North_Cfactor, !- Construction Name
- Basement, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,53.3400,-2.4390, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,53.3400,-2.4390, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Basement_Wall_East, !- Name
- Wall, !- Surface Type
- Basement_Wall_East_Cfactor, !- Construction Name
- Basement, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,-2.4390, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,-2.4390, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Basement_Wall_South, !- Name
- Wall, !- Surface Type
- Basement_Wall_South_Cfactor, !- Construction Name
- Basement, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,-2.4390, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,-2.4390, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Basement_Wall_West, !- Name
- Wall, !- Surface Type
- Basement_Wall_West_Cfactor, !- Construction Name
- Basement, !- Zone Name
- GroundFCfactorMethod, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,-2.4390, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,-2.4390, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Basement_Floor, !- Name
- Floor, !- Surface Type
- ext_slab_8in_with_carpet,!- Construction Name
- Basement, !- Zone Name
- Adiabatic, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,-2.4390, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,-2.4390, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,-2.4390, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,-2.4390; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Basement_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Basement, !- Zone Name
- Surface, !- Outside Boundary Condition
- Basement_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 45.7200,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 45.7200,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 45.7200,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 45.7200,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 45.7200,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 45.7200,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 45.7200,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 45.7200,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 45.7200,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 45.7200,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 45.7200,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 45.7200,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma1_Flr_1_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma1_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma1_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma1_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,4.5720,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma1_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma1_Flr_1_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma1_Flr_1_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma1_Flr_1_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma1_Flr_1_Ceiling,!- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma1_Flr_1_Ceiling,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,9.1440,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,9.1440,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam3_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,9.1440,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,9.1440,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam3_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,9.1440,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,9.1440,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,9.1440,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,9.1440,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam3_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam3_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,9.1440,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,9.1440,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Exam3_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,9.1440,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,9.1440,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma2_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma2_Flr_1_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma2_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma2_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma2_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma2_Flr_1_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma2_Flr_1_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma2_Flr_1_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Trauma2_Flr_1_Ceiling,!- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Trauma2_Flr_1_Ceiling,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 45.7200,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 45.7200,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Triage_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 45.7200,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 45.7200,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Triage_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 45.7200,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 45.7200,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 45.7200,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 45.7200,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Triage_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 45.7200,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 45.7200,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Triage_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_Triage_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 45.7200,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 45.7200,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Mult4_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Mult4_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Mult4_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Mult4_Flr_1_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Mult4_Flr_1_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Mult4_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_1_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_1_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_2_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 21.3415,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 21.3415,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 4 {m}
- 21.3415,0.0000,0.0000, !- X,Y,Z ==> Vertex 5 {m}
- 21.3415,4.5720,0.0000, !- X,Y,Z ==> Vertex 6 {m}
- 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 7 {m}
- 6.0960,0.0000,0.0000; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_3_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Wall_3_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 21.3415,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 21.3415,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 21.3415,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 21.3415,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_1_East, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_1_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,15.2400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_1_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,15.2400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_3_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Wall_3_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Wall_3_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 21.3415,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 21.3415,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lobby_Records_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 21.3415,4.5720,4.2683, !- X,Y,Z ==> Vertex 4 {m}
- 21.3415,0.0000,4.2683, !- X,Y,Z ==> Vertex 5 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 6 {m}
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 7 {m}
- 0.0000,53.3400,4.2683; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Wall_1_West, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,15.2400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lobby_Records_Flr_1_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,15.2400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Wall_East,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_1_Wall_East,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_1_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,13.7160,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,13.7160,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,39.6240,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,39.6240,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,39.6240,0.0000, !- X,Y,Z ==> Vertex 4 {m}
- 70.1040,39.6240,0.0000, !- X,Y,Z ==> Vertex 5 {m}
- 70.1040,13.7160,0.0000, !- X,Y,Z ==> Vertex 6 {m}
- 64.0080,13.7160,0.0000, !- X,Y,Z ==> Vertex 7 {m}
- 64.0080,4.5720,0.0000; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_1_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,39.6240,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,39.6240,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,39.6240,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,39.6240,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,13.7160,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,13.7160,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_3_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,39.6240,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,39.6240,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_1_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_1_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 64.0080,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 64.0080,13.7160,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,13.7160,0.0000, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,13.7160,0.0000, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,13.7160,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- Surface, !- Outside Boundary Condition
- ER_NurseStn_Lobby_Flr_1_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 64.0080,13.7160,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,13.7160,4.2683, !- X,Y,Z ==> Vertex 4 {m}
- 70.1040,39.6240,4.2683, !- X,Y,Z ==> Vertex 5 {m}
- 64.0080,39.6240,4.2683, !- X,Y,Z ==> Vertex 6 {m}
- 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 7 {m}
- 39.6240,48.7680,4.2683; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- OR1_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- OR1_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR1_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- OR1_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR1_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- OR1_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR1_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR1_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR1_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR1_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR1_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR1_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR1_Flr_2_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR1_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- OR1_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR1_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,47.2440,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR2_Mult5_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,41.1480,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,41.1480,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR2_Mult5_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR2_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,41.1480,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,41.1480,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,47.2440,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR2_Mult5_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR2_Mult5_Flr_2_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR2_Mult5_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR2_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,41.1480,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,41.1480,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,41.1480,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,41.1480,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR2_Mult5_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR2_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,41.1480,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,41.1480,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR2_Mult5_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR2_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,41.1480,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,41.1480,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR3_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- OR3_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR3_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- OR3_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR3_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR3_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR3_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR3_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR3_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR3_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR3_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR3_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR3_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR3_Flr_2_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR3_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- OR3_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR3_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,47.2440,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR4_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- OR4_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR4_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,47.2440,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR4_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR4_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR4_Flr_2_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR4_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR4_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR4_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR4_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR4_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR4_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR4_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR4_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR4_Flr_2_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR4_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- OR4_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR4_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 24.3840,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 24.3840,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom1_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 24.3840,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 24.3840,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 24.3840,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 24.3840,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 24.3840,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 24.3840,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 24.3840,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 24.3840,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 24.3840,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 24.3840,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom2_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom2_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom2_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom2_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom2_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom2_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom2_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom2_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom2_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom2_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,44.1960,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,44.1960,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom3_Mult6_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,44.1960,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,44.1960,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,44.1960,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,44.1960,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,44.1960,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,44.1960,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,44.1960,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,44.1960,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,44.1960,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,44.1960,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ICU_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- ICU_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ICU_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,21.3415,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ICU_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_Flr_2_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ICU_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ICU_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_NurseStn_Lobby_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_NurseStn_Lobby_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,21.3415,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,21.3415,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_NurseStn_Lobby_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_NurseStn_Lobby_Flr_2_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_NurseStn_Lobby_Flr_2_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_NurseStn_Lobby_Flr_2_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_NurseStn_Lobby_Flr_2_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_NurseStn_Lobby_Flr_2_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_NurseStn_Lobby_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_NurseStn_Lobby_Flr_2_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- ICU_NurseStn_Lobby_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- Surface, !- Outside Boundary Condition
- ICU_NurseStn_Lobby_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,21.3415,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_2_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_2_Wall_East,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_2_Wall_East,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_2_Wall_West,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_2_Wall_West,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_1_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 4 {m}
- 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 5 {m}
- 60.9600,16.7640,4.2683, !- X,Y,Z ==> Vertex 6 {m}
- 70.1040,16.7640,4.2683, !- X,Y,Z ==> Vertex 7 {m}
- 70.1040,0.0000,4.2683; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_3_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Wall_3_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,16.7640,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,16.7640,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,16.7640,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,16.7640,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 48.7680,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 48.7680,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,16.7640,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,16.7640,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,16.7640,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,16.7640,4.2683, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- Surface, !- Outside Boundary Condition
- OR_NurseStn_Lobby_Flr_2_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,16.7640,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,16.7640,8.5366, !- X,Y,Z ==> Vertex 4 {m}
- 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 5 {m}
- 48.7680,53.3400,8.5366, !- X,Y,Z ==> Vertex 6 {m}
- 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 7 {m}
- 39.6240,22.8600,8.5366; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_3_Wall_East,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,4.5720,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_3_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_3_Wall_West,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_3_Wall_West,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Wall_East, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,8.9920,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,8.9920,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_3_Wall_East,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_3_Wall_West,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_3_Wall_West,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PhysTherapy_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PhysTherapy_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PhysTherapy_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PhysTherapy_Flr_3_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PhysTherapy_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PhysTherapy_Flr_3_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PhysTherapy_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PhysTherapy_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_3_Wall_West,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,4.5720,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_3_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_3_Wall_East,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_3_Wall_East,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Wall_West, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,8.9920,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,8.9920,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_3_Wall_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_3_Wall_West,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_3_Wall_East,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_3_Wall_East,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_1_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PhysTherapy_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PhysTherapy_Flr_3_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 4 {m}
- 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 5 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 6 {m}
- 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 7 {m}
- 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 8 {m}
- 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 9 {m}
- 9.1440,33.5280,8.5366; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_2_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_2_East, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_1_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_1_West, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 6 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 7 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 8 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 9 {m}
- 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_3_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_3_Wall_3_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 6, !- Number of Vertices
- 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 4 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 5 {m}
- 9.1440,10.6680,8.5366; !- X,Y,Z ==> Vertex 6 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Wall_1_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_3_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 6, !- Number of Vertices
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 15.2400,33.5280,12.8049; !- X,Y,Z ==> Vertex 6 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_3_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_4_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5820,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PhysTherapy_Flr_3_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_2_West, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_1_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_1_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 4 {m}
- 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 5 {m}
- 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 6 {m}
- 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 7 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 8 {m}
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 9 {m}
- 28.9560,4.5720,8.5366; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_1_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_3_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_3_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_3_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_4_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_4_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 6 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 7 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 8 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 9 {m}
- 4.5720,10.6680,12.8049; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_3_Wall_3_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_4_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_1_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_5_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- PhysTherapy_Flr_3_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_3_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_1_East, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_3_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5820,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 4 {m}
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 5 {m}
- 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 6 {m}
- 65.5320,48.7680,8.5366, !- X,Y,Z ==> Vertex 7 {m}
- 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 8 {m}
- 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 9 {m}
- 9.1440,10.6680,8.5366; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_1_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_3_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_3_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_3_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_3_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_4_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_3_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,33.5820,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,33.5820,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_4_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_3_Wall_3_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_5_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_1_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_3_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_3_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 6 {m}
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 7 {m}
- 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 8 {m}
- 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 9 {m}
- 4.5720,48.7680,12.8049; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom1_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_4_Wall_East,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_4_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_4_Wall_West,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_4_Wall_West,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom2_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom2_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Wall_East, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom3_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,4.5720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_4_Wall_East,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_4_Wall_West,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_4_Wall_West,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 62.4840,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom4_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom4_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 62.4840,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 62.4840,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 44.1960,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom5_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 44.1960,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 44.1960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Radiology_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Radiology_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Radiology_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Radiology_Flr_4_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Radiology_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Radiology_Flr_4_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Radiology_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Radiology_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_4_Wall_West,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_4_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_4_Wall_East,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_4_Wall_East,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom6_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom6_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Wall_West, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom7_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_4_Wall_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_4_Wall_West,!- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_4_Wall_East,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_4_Wall_East,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 6.0960,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- PatRoom8_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- PatRoom8_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 6.0960,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 6.0960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_1_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Radiology_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Radiology_Flr_4_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 6 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 7 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 8 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 9 {m}
- 9.1440,33.5280,12.8049; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_2_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_2_East, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_1_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_1_West, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5280,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,33.5280,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 4 {m}
- 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 5 {m}
- 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 6 {m}
- 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 7 {m}
- 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 8 {m}
- 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 9 {m}
- 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Wall_1_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_3_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_4_Wall_3_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 6, !- Number of Vertices
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 6 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Wall_1_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_3_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 6, !- Number of Vertices
- 9.1440,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 4 {m}
- 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 5 {m}
- 15.2400,33.5280,17.0732; !- X,Y,Z ==> Vertex 6 {m}
-
- BuildingSurface:Detailed,
- Lab_Flr_4_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Lab_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_4_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,33.5820,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Radiology_Flr_4_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_2_West, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_1_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_1_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 6 {m}
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 7 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 8 {m}
- 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 9 {m}
- 28.9560,4.5720,12.8049; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_1_South, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_2_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_3_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_3_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_3_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_3_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_4_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_4_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,4.5720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 4 {m}
- 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 5 {m}
- 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 6 {m}
- 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 7 {m}
- 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 8 {m}
- 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 9 {m}
- 4.5720,10.6680,17.0732; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Corridor_SE_Flr_4_Wall_3_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_4_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_1_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_5_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_2_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Radiology_Flr_4_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_3_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_1_East, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_4_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- 0.0, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,33.5820,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 4 {m}
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 5 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 6 {m}
- 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 7 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 8 {m}
- 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 9 {m}
- 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_1_North, !- Name
- Wall, !- Surface Type
- res_ext_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_3_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_3_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_3_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_3_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_4_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Lab_Flr_4_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,33.5820,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_4_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_SE_Flr_4_Wall_3_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_5_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_1_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 28.9560,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 28.9560,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 4.5720,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m}
- 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m}
- 4.5720,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_NW_Flr_4_Ceiling, !- Name
- Ceiling, !- Surface Type
- int_slab_ceiling, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_NW_Flr_4_Ceiling, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 10, !- Number of Vertices
- 4.5720,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 4 {m}
- 65.5320,48.7680,17.0732, !- X,Y,Z ==> Vertex 5 {m}
- 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 6 {m}
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 7 {m}
- 28.9560,53.3400,17.0732, !- X,Y,Z ==> Vertex 8 {m}
- 28.9560,48.7680,17.0732, !- X,Y,Z ==> Vertex 9 {m}
- 4.5720,48.7680,17.0732; !- X,Y,Z ==> Vertex 10 {m}
-
- BuildingSurface:Detailed,
- Dining_Flr_5_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Dining_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Dining_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Dining_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Dining_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Dining_Flr_5_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Dining_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Dining_Flr_5_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Dining_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Kitchen_Flr_5_Wall_South,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Dining_Flr_5_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Dining_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_5_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Dining_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Dining_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Wall_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Dining_Flr_5_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Wall_North, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Wall_1_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Kitchen_Flr_5_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Wall_1_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- NurseStn_Lobby_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Wall_South,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Dining_Flr_5_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_5_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Wall_North,!- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Wall_East, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Kitchen_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 70.1040,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Kitchen_Flr_5_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Wall_2_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Flr_5_Wall_South,!- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office1_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Flr_5_Wall_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office1_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Office1_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,7.6220,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Flr_5_Wall_North,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office1_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Flr_5_Wall_North,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Flr_5_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office1_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office1_Flr_5_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office1_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Office1_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office2_Mult5_Flr_5_Wall_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,15.2400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,15.2400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office2_Mult5_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office2_Mult5_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,15.2400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,7.6200,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,7.6200,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,15.2400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office2_Mult5_Flr_5_Wall_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office2_Mult5_Flr_5_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,15.2400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,15.2400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,15.2400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,15.2400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office2_Mult5_Flr_5_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office2_Mult5_Flr_5_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,15.2400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,15.2400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office2_Mult5_Flr_5_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office2_Mult5_Flr_5_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office2_Mult5_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,15.2400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,7.6200,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,7.6200,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,15.2400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office3_Flr_5_Wall_North,!- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office3_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office3_Flr_5_Wall_West, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office3_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,45.7200,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,45.7200,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office3_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Office3_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office3_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,45.7200,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 0.0000,45.7200,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 0.0000,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office3_Flr_5_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office3_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office3_Flr_5_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,45.7200,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,45.7200,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office3_Flr_5_Wall_South,!- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office3_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office3_Flr_5_Wall_South,!- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,45.7200,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,45.7200,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,45.7200,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,45.7200,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office3_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Office3_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 0.0000,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 0.0000,45.7200,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,45.7200,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office4_Mult6_Flr_5_Wall_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 12.1920,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 12.1920,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office4_Mult6_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office4_Mult6_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 12.1920,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 12.1920,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office4_Mult6_Flr_5_Wall_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office4_Mult6_Flr_5_Wall_East, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 12.1920,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 12.1920,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 12.1920,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 12.1920,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office4_Mult6_Flr_5_Wall_South, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office4_Mult6_Flr_5_Wall_South, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 12.1920,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 12.1920,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office4_Mult6_Flr_5_Wall_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Office4_Mult6_Flr_5_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Office4_Mult6_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,48.7680,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 12.1920,48.7680,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 12.1920,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_1_South, !- Name
- Wall, !- Surface Type
- Air_Wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_5_Wall_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_1_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- NurseStn_Lobby_Flr_5_Wall_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_1_North, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 27.4320,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 27.4320,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_2_South, !- Name
- Wall, !- Surface Type
- nonres_ext_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 15.2400,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Floor, !- Name
- Floor, !- Surface Type
- int_slab_floor, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Floor, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 27.4320,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 27.4320,53.3400,17.0732, !- X,Y,Z ==> Vertex 4 {m}
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 5 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 6 {m}
- 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 7 {m}
- 15.2400,0.0000,17.0732; !- X,Y,Z ==> Vertex 8 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_2_North, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Wall_2_North, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 27.4320,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 27.4320,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_2_East, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Kitchen_Flr_5_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_1_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Wall_1_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 9.1440,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 9.1440,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Wall_2_West, !- Name
- Wall, !- Surface Type
- int_wall, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Surface, !- Outside Boundary Condition
- Corridor_Flr_5_Wall_2_West, !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 4, !- Number of Vertices
- 27.4320,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 27.4320,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m}
- 27.4320,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m}
- 27.4320,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Corridor_Flr_5_Ceiling, !- Name
- Roof, !- Surface Type
- nonres_roof, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- AutoCalculate, !- View Factor to Ground
- 8, !- Number of Vertices
- 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m}
- 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m}
- 15.2400,42.6720,21.3415, !- X,Y,Z ==> Vertex 3 {m}
- 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 4 {m}
- 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 5 {m}
- 27.4320,53.3400,21.3415, !- X,Y,Z ==> Vertex 6 {m}
- 27.4320,48.7680,21.3415, !- X,Y,Z ==> Vertex 7 {m}
- 9.1440,48.7680,21.3415; !- X,Y,Z ==> Vertex 8 {m}
-
-!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER:SUB ===========
-
- FenestrationSurface:Detailed,
- Office1_Mult4_Flr_1_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office1_Mult4_Flr_1_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 6.405,0.0000,2.1340, !- X,Y,Z ==> Vertex 1 {m}
- 6.405,0.0000,0.9140, !- X,Y,Z ==> Vertex 2 {m}
- 8.835,0.0000,0.9140, !- X,Y,Z ==> Vertex 3 {m}
- 8.835,0.0000,2.1340; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_2_West, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- Lobby_Records_Flr_1_Wall_1_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,52.3400,2.1340, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,52.3400,0.9140, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,1.0000,0.9140, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,1.0000,2.1340; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_NurseStn_Lobby_Flr_1_Wall_1_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- ER_NurseStn_Lobby_Flr_1_Wall_1_East, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,14.2020,2.1340, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,14.2020,0.9140, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,39.1380,0.9140, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,39.1380,2.1340; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- IC_PatRoom1_Mult5_Flr_2_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 28.682,53.3400,6.4010, !- X,Y,Z ==> Vertex 1 {m}
- 28.682,53.3400,5.1820, !- X,Y,Z ==> Vertex 2 {m}
- 24.658,53.3400,5.1820, !- X,Y,Z ==> Vertex 3 {m}
- 24.658,53.3400,6.4010; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- IC_PatRoom2_Flr_2_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- IC_PatRoom2_Flr_2_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 5.730,53.3400,6.4010, !- X,Y,Z ==> Vertex 1 {m}
- 5.730,53.3400,5.1820, !- X,Y,Z ==> Vertex 2 {m}
- 0.366,53.3400,5.1820, !- X,Y,Z ==> Vertex 3 {m}
- 0.366,53.3400,6.4010; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- IC_PatRoom2_Flr_2_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- IC_PatRoom2_Flr_2_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,53.0660,6.4010, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,53.0660,5.1820, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,49.0420,5.1820, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,49.0420,6.4010; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- IC_PatRoom3_Mult6_Flr_2_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,48.4940,6.4010, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,48.4940,5.1820, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,44.4700,5.1820, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,44.4700,6.4010; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ICU_Flr_2_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- ICU_Flr_2_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,20.9360,6.4010, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,20.9360,5.1820, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,0.4000,5.1820, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,0.4000,6.4010; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- OR_NurseStn_Lobby_Flr_2_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- OR_NurseStn_Lobby_Flr_2_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 40.195,0.0000,6.4010, !- X,Y,Z ==> Vertex 1 {m}
- 40.195,0.0000,5.1820, !- X,Y,Z ==> Vertex 2 {m}
- 69.533,0.0000,5.1820, !- X,Y,Z ==> Vertex 3 {m}
- 69.533,0.0000,6.4010; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom1_Mult10_Flr_3_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom1_Mult10_Flr_3_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 39.898,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 39.898,0.0000,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 43.922,0.0000,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 43.922,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom2_Flr_3_Wall_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom2_Flr_3_Wall_East,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,0.2740,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,0.2740,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,4.2980,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,4.2980,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom2_Flr_3_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom2_Flr_3_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 62.941,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 62.941,0.0000,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 69.647,0.0000,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 69.647,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom3_Mult10_Flr_3_Wall_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom3_Mult10_Flr_3_Wall_East, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,4.8370,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,4.8370,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,8.7260,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,8.7260,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom4_Flr_3_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom4_Flr_3_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 69.647,53.3400,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 69.647,53.3400,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 62.941,53.3400,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 62.941,53.3400,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom4_Flr_3_Wall_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom4_Flr_3_Wall_East,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,49.0420,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,49.0420,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,53.0660,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,53.0660,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom5_Mult10_Flr_3_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom5_Mult10_Flr_3_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 43.922,53.3400,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 43.922,53.3400,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 39.898,53.3400,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 39.898,53.3400,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom6_Flr_3_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom6_Flr_3_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.366,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 0.366,0.0000,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 5.730,0.0000,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 5.730,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom6_Flr_3_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom6_Flr_3_Wall_West,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,4.2980,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,4.2980,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,0.2740,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,0.2740,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom7_Mult10_Flr_3_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom7_Mult10_Flr_3_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,8.7260,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,8.7260,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,4.8370,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,4.8370,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom8_Flr_3_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom8_Flr_3_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 5.730,53.3400,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 5.730,53.3400,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 0.366,53.3400,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 0.366,53.3400,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom8_Flr_3_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom8_Flr_3_Wall_West,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,53.0660,10.6680, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,53.0660,9.4490, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,49.0420,9.4490, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,49.0420,10.6680; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom1_Mult10_Flr_4_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom1_Mult10_Flr_4_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 39.898,0.0000,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 39.898,0.0000,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 43.922,0.0000,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 43.922,0.0000,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom2_Flr_4_Wall_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom2_Flr_4_Wall_East,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,0.2740,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,0.2740,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,4.2980,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,4.2980,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom2_Flr_4_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom2_Flr_4_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 62.941,0.0000,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 62.941,0.0000,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 69.647,0.0000,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 69.647,0.0000,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom3_Mult10_Flr_4_Wall_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom3_Mult10_Flr_4_Wall_East, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,4.8370,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,4.8370,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,8.7260,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,8.7260,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom4_Flr_4_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom4_Flr_4_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 69.647,53.3400,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 69.647,53.3400,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 62.941,53.3400,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 62.941,53.3400,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom4_Flr_4_Wall_East_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom4_Flr_4_Wall_East,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 70.104,49.0420,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 70.104,49.0420,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 70.104,53.0660,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 70.104,53.0660,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom5_Mult10_Flr_4_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom5_Mult10_Flr_4_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 43.922,53.3400,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 43.922,53.3400,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 39.898,53.3400,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 39.898,53.3400,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom6_Flr_4_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom6_Flr_4_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.366,0.0000,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 0.366,0.0000,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 5.730,0.0000,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 5.730,0.0000,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom6_Flr_4_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom6_Flr_4_Wall_West,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,4.2980,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,4.2980,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,0.2740,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,0.2740,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom7_Mult10_Flr_4_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom7_Mult10_Flr_4_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,8.7260,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,8.7260,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,4.8370,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,4.8370,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom8_Flr_4_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom8_Flr_4_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 5.730,53.3400,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 5.730,53.3400,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 0.366,53.3400,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 0.366,53.3400,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- PatRoom8_Flr_4_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- PatRoom8_Flr_4_Wall_West,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,53.0660,14.9350, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,53.0660,13.7160, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,49.0420,13.7160, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,49.0420,14.9350; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Dining_Flr_5_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- Dining_Flr_5_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 40.195,0.0000,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 40.195,0.0000,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 69.533,0.0000,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 69.533,0.0000,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Office1_Flr_5_Wall_South_Window, !- Name
- Window, !- Surface Type
- NonreseastWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office1_Flr_5_Wall_South,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.549,0.0000,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 0.549,0.0000,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 8.595,0.0000,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 8.595,0.0000,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Office1_Flr_5_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office1_Flr_5_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,7.1630,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,7.1630,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,0.4570,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,0.4570,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Office2_Mult5_Flr_5_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office2_Mult5_Flr_5_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,14.7830,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,14.7830,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,8.0770,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,8.0770,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Office3_Flr_5_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office3_Flr_5_Wall_North,!- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 8.595,53.3400,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 8.595,53.3400,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 0.549,53.3400,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 0.549,53.3400,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Office3_Flr_5_Wall_West_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office3_Flr_5_Wall_West, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 0.000,52.8830,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 0.000,52.8830,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 0.000,46.1770,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 0.000,46.1770,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Office4_Mult6_Flr_5_Wall_North_Window, !- Name
- Window, !- Surface Type
- NonresWindow_U_0.34_SHGC_0.38, !- Construction Name
- Office4_Mult6_Flr_5_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- AutoCalculate, !- View Factor to Ground
- , !- Frame and Divider Name
- 1.0000, !- Multiplier
- 4, !- Number of Vertices
- 11.883,53.3400,19.2020, !- X,Y,Z ==> Vertex 1 {m}
- 11.883,53.3400,17.9830, !- X,Y,Z ==> Vertex 2 {m}
- 9.453,53.3400,17.9830, !- X,Y,Z ==> Vertex 3 {m}
- 9.453,53.3400,19.2020; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Exam3_Mult4_Flr_1_Wall_East_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Exam3_Mult4_Flr_1_Wall_East, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 70.104000000000,7.359108108820,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 70.104000000000,7.359108108820,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 70.104000000000,8.273508108820,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 70.104000000000,8.273508108820,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Trauma1_Flr_1_Wall_East_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Trauma1_Flr_1_Wall_East, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 70.104000000000,2.758813671662,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 70.104000000000,2.758813671662,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 70.104000000000,3.673213671662,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 70.104000000000,3.673213671662,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Corridor_Flr_1_Wall_South_Door2, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Corridor_Flr_1_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 35.953443675091,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 35.953443675091,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 36.867843675091,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 36.867843675091,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Corridor_Flr_1_Wall_North_Door2, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Corridor_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 31.965236137530,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 31.965236137530,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 31.050836137530,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 31.050836137530,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_1_South_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Lobby_Records_Flr_1_Wall_1_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 3.585870154051,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 3.585870154051,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 4.500270154051,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 4.500270154051,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_2_South_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Lobby_Records_Flr_1_Wall_2_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 27.053267114353,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 27.053267114353,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 27.967667114353,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 27.967667114353,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_North_Door1, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Lobby_Records_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 26.374663905857,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 26.374663905857,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 25.460263905857,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 25.460263905857,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_North_Door3, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Lobby_Records_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 3.754282444979,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 3.754282444979,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 2.839882444979,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 2.839882444979,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Exam1_Mult4_Flr_1_Wall_South_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Exam1_Mult4_Flr_1_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 42.288205250969,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 42.288205250969,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 43.202605250969,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 43.202605250969,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Trauma1_Flr_1_Wall_South_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Trauma1_Flr_1_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 65.379246485980,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 65.379246485980,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 66.293646485980,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 66.293646485980,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Trauma2_Flr_1_Wall_East_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Trauma2_Flr_1_Wall_East, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 70.104000000000,49.786049019517,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 70.104000000000,49.786049019517,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 70.104000000000,50.700449019517,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 70.104000000000,50.700449019517,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Trauma2_Flr_1_Wall_North_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Trauma2_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 66.434946561573,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 66.434946561573,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 65.520546561573,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 65.520546561573,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- ER_Triage_Mult4_Flr_1_Wall_North_Door, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- ER_Triage_Mult4_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 44.446456441754,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 44.446456441754,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 43.532056441754,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 43.532056441754,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Corridor_Flr_1_Wall_South_Door1, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Corridor_Flr_1_Wall_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 31.496618875192,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 31.496618875192,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 32.411018875192,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 32.411018875192,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Corridor_Flr_1_Wall_North_Door1, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Corridor_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 37.530463591957,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 37.530463591957,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 36.616063591957,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 36.616063591957,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_North_Door2, !- Name
- Door, !- Surface Type
- Swinging Door_con, !- Construction Name
- Lobby_Records_Flr_1_Wall_North, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 16.509001079618,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m}
- 16.509001079618,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 15.594601079618,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 15.594601079618,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m}
-
- FenestrationSurface:Detailed,
- Lobby_Records_Flr_1_Wall_2_South_RollDoor, !- Name
- Door, !- Surface Type
- Overhead Door_con, !- Construction Name
- Lobby_Records_Flr_1_Wall_2_South, !- Building Surface Name
- , !- Outside Boundary Condition Object
- , !- View Factor to Ground
- , !- Frame and Divider Name
- , !- Multiplier
- 4, !- Number of Vertices
- 22.483082864735,0.000000000000,2.438400000000, !- X,Y,Z ==> Vertex 1 {m}
- 22.483082864735,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m}
- 25.531082864734,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m}
- 25.531082864734,0.000000000000,2.438400000000; !- X,Y,Z ==> Vertex 4 {m}
-
-!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER:INTERNALMASS ===========
-
- InternalMass,
- Basement_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Basement, !- Zone Name
- 7478.6947; !- Surface Area {m2}
-
- InternalMass,
- ER_Exam1_Mult4_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- ER_Trauma1_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ER_Trauma1_Flr_1, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- ER_Exam3_Mult4_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- ER_Trauma2_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ER_Trauma2_Flr_1, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- ER_Triage_Mult4_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- Office1_Mult4_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Office1_Mult4_Flr_1, !- Zone Name
- 27.8709; !- Surface Area {m2}
-
- InternalMass,
- Lobby_Records_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Lobby_Records_Flr_1, !- Zone Name
- 2949.6212; !- Surface Area {m2}
-
- InternalMass,
- Corridor_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_Flr_1, !- Zone Name
- 1138.0622; !- Surface Area {m2}
-
- InternalMass,
- ER_NurseStn_Lobby_Flr_1_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- 2471.2209; !- Surface Area {m2}
-
- InternalMass,
- OR1_Flr_2_InternalMass_1,!- Name
- InteriorFurnishings, !- Construction Name
- OR1_Flr_2, !- Zone Name
- 111.4836; !- Surface Area {m2}
-
- InternalMass,
- OR2_Mult5_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- OR2_Mult5_Flr_2, !- Zone Name
- 111.4836; !- Surface Area {m2}
-
- InternalMass,
- OR3_Flr_2_InternalMass_1,!- Name
- InteriorFurnishings, !- Construction Name
- OR3_Flr_2, !- Zone Name
- 111.4836; !- Surface Area {m2}
-
- InternalMass,
- OR4_Flr_2_InternalMass_1,!- Name
- InteriorFurnishings, !- Construction Name
- OR4_Flr_2, !- Zone Name
- 445.9346; !- Surface Area {m2}
-
- InternalMass,
- IC_PatRoom1_Mult5_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- 41.8064; !- Surface Area {m2}
-
- InternalMass,
- IC_PatRoom2_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- IC_PatRoom2_Flr_2, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- IC_PatRoom3_Mult6_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- 41.8064; !- Surface Area {m2}
-
- InternalMass,
- ICU_Flr_2_InternalMass_1,!- Name
- InteriorFurnishings, !- Construction Name
- ICU_Flr_2, !- Zone Name
- 1235.9289; !- Surface Area {m2}
-
- InternalMass,
- ICU_NurseStn_Lobby_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- 1337.5356; !- Surface Area {m2}
-
- InternalMass,
- Corridor_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_Flr_2, !- Zone Name
- 1138.0622; !- Surface Area {m2}
-
- InternalMass,
- OR_NurseStn_Lobby_Flr_2_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- 2025.2863; !- Surface Area {m2}
-
- InternalMass,
- PatRoom1_Mult10_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- 41.8064; !- Surface Area {m2}
-
- InternalMass,
- PatRoom2_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom2_Flr_3, !- Zone Name
- 69.6773; !- Surface Area {m2}
-
- InternalMass,
- PatRoom3_Mult10_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- 40.4165; !- Surface Area {m2}
-
- InternalMass,
- PatRoom4_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom4_Flr_3, !- Zone Name
- 69.6773; !- Surface Area {m2}
-
- InternalMass,
- PatRoom5_Mult10_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- 41.8064; !- Surface Area {m2}
-
- InternalMass,
- PhysTherapy_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PhysTherapy_Flr_3, !- Zone Name
- 975.4819; !- Surface Area {m2}
-
- InternalMass,
- PatRoom6_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom6_Flr_3, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- PatRoom7_Mult10_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- 40.4165; !- Surface Area {m2}
-
- InternalMass,
- PatRoom8_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom8_Flr_3, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- NurseStn_Lobby_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- NurseStn_Lobby_Flr_3, !- Zone Name
- 1811.6093; !- Surface Area {m2}
-
- InternalMass,
- Lab_Flr_3_InternalMass_1,!- Name
- InteriorFurnishings, !- Construction Name
- Lab_Flr_3, !- Zone Name
- 529.5473; !- Surface Area {m2}
-
- InternalMass,
- Corridor_SE_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_SE_Flr_3, !- Zone Name
- 1133.4171; !- Surface Area {m2}
-
- InternalMass,
- Corridor_NW_Flr_3_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_NW_Flr_3, !- Zone Name
- 1133.4171; !- Surface Area {m2}
-
- InternalMass,
- PatRoom1_Mult10_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- 41.8064; !- Surface Area {m2}
-
- InternalMass,
- PatRoom2_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom2_Flr_4, !- Zone Name
- 69.6773; !- Surface Area {m2}
-
- InternalMass,
- PatRoom3_Mult10_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- 40.4165; !- Surface Area {m2}
-
- InternalMass,
- PatRoom4_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom4_Flr_4, !- Zone Name
- 69.6773; !- Surface Area {m2}
-
- InternalMass,
- PatRoom5_Mult10_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- 41.8064; !- Surface Area {m2}
-
- InternalMass,
- Radiology_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Radiology_Flr_4, !- Zone Name
- 975.4819; !- Surface Area {m2}
-
- InternalMass,
- PatRoom6_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom6_Flr_4, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- PatRoom7_Mult10_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- 40.4165; !- Surface Area {m2}
-
- InternalMass,
- PatRoom8_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- PatRoom8_Flr_4, !- Zone Name
- 55.7418; !- Surface Area {m2}
-
- InternalMass,
- NurseStn_Lobby_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- NurseStn_Lobby_Flr_4, !- Zone Name
- 1811.6093; !- Surface Area {m2}
-
- InternalMass,
- Lab_Flr_4_InternalMass_1,!- Name
- InteriorFurnishings, !- Construction Name
- Lab_Flr_4, !- Zone Name
- 529.5473; !- Surface Area {m2}
-
- InternalMass,
- Corridor_SE_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_SE_Flr_4, !- Zone Name
- 1133.4171; !- Surface Area {m2}
-
- InternalMass,
- Corridor_NW_Flr_4_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_NW_Flr_4, !- Zone Name
- 1133.4171; !- Surface Area {m2}
-
- InternalMass,
- Dining_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Dining_Flr_5, !- Zone Name
- 1393.5456; !- Surface Area {m2}
-
- InternalMass,
- NurseStn_Lobby_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- NurseStn_Lobby_Flr_5, !- Zone Name
- 2081.0281; !- Surface Area {m2}
-
- InternalMass,
- Kitchen_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Kitchen_Flr_5, !- Zone Name
- 1858.0608; !- Surface Area {m2}
-
- InternalMass,
- Office1_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Office1_Flr_5, !- Zone Name
- 139.3911; !- Surface Area {m2}
-
- InternalMass,
- Office2_Mult5_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Office2_Mult5_Flr_5, !- Zone Name
- 139.3546; !- Surface Area {m2}
-
- InternalMass,
- Office3_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Office3_Flr_5, !- Zone Name
- 139.3546; !- Surface Area {m2}
-
- InternalMass,
- Office4_Mult6_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Office4_Mult6_Flr_5, !- Zone Name
- 27.8709; !- Surface Area {m2}
-
- InternalMass,
- Corridor_Flr_5_InternalMass_1, !- Name
- InteriorFurnishings, !- Construction Name
- Corridor_Flr_5, !- Zone Name
- 1003.3528; !- Surface Area {m2}
-
-!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE ===========
-
-
- ScheduleTypeLimits,
- Any Number; !- Name
-
- ScheduleTypeLimits,
- Fraction, !- Name
- 0.0, !- Lower Limit Value
- 1.0, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- Temperature, !- Name
- -60, !- Lower Limit Value
- 200, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- On/Off, !- Name
- 0, !- Lower Limit Value
- 1, !- Upper Limit Value
- Discrete; !- Numeric Type
-
- ScheduleTypeLimits,
- Control Type, !- Name
- 0, !- Lower Limit Value
- 4, !- Upper Limit Value
- Discrete; !- Numeric Type
-
- ScheduleTypeLimits,
- Humidity, !- Name
- 10, !- Lower Limit Value
- 90, !- Upper Limit Value
- Continuous; !- Numeric Type
-
- ScheduleTypeLimits,
- Number; !- Name
-
-!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT ===========
-
-
- Schedule:Compact,
- Patrms_ExtraElecHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- Patrms_ExtraWaterHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ER_ExtraElecHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ER_ExtraWaterHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- OR_ExtraElecHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- OR_ExtraWaterHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ICU_ExtraElecHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ICU_ExtraWaterHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- Labs_ExtraElecHeatC_Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- Labs_ExtraWaterHeatC_Sch,!- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- Hours_of_operation, !- Name
- on/off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- Exterior_Lgt_ALWAYS_ON, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
- Schedule:Compact,
- ALWAYS_ON, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- ALWAYS_OFF, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.0; !- Field 3
-
-
-
- Schedule:Compact,
- HVACOperationSchd, !- Name
- on/off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Schedule:Compact,
- BLDG_LIGHT_CORRIDOR_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.4806, !- Field 3
- Until: 16:00,0.86508, !- Field 4
- Until: 24:00,0.4806, !- Field 5
- For: SummerDesignDay, !- Field 6
- Until: 24:00,1, !- Field 7
- For: WinterDesignDay, !- Field 8
- Until: 24:00,0, !- Field 9
- For: Saturday, !- Field 10
- Until: 8:00,0.4806, !- Field 11
- Until: 18:00,0.76896, !- Field 12
- Until: 24:00,0.4806, !- Field 13
- For: Sunday Holidays AllOtherDays, !- Field 14
- Until: 8:00,0.4806, !- Field 15
- Until: 16:00,0.67284, !- Field 16
- Until: 24:00,0.4806; !- Field 17
-
- Schedule:Compact,
- BLDG_LIGHT_EXAM_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.39, !- Field 3
- Until: 16:00,0.702, !- Field 4
- Until: 24:00,0.39, !- Field 5
- For: SummerDesignDay, !- Field 6
- Until: 24:00,1, !- Field 7
- For: WinterDesignDay, !- Field 8
- Until: 24:00,0, !- Field 9
- For: Saturday, !- Field 10
- Until: 8:00,0.39, !- Field 11
- Until: 18:00,0.624, !- Field 12
- Until: 24:00,0.39, !- Field 13
- For: Sunday Holidays AllOtherDays, !- Field 14
- Until: 8:00,0.39, !- Field 15
- Until: 16:00,0.546, !- Field 16
- Until: 24:00,0.39; !- Field 17
-
- Schedule:Compact,
- BLDG_LIGHT_EXTD_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.5, !- Field 3
- Until: 16:00,0.9, !- Field 4
- Until: 24:00,0.5, !- Field 5
- For: SummerDesignDay, !- Field 6
- Until: 24:00,1, !- Field 7
- For: WinterDesignDay, !- Field 8
- Until: 24:00,0, !- Field 9
- For: Saturday, !- Field 10
- Until: 8:00,0.5, !- Field 11
- Until: 18:00,0.8, !- Field 12
- Until: 24:00,0.5, !- Field 13
- For: Sunday Holidays AllOtherDays, !- Field 14
- Until: 8:00,0.5, !- Field 15
- Until: 16:00,0.7, !- Field 16
- Until: 24:00,0.5; !- Field 17
-
- Schedule:Compact,
- BLDG_LIGHT_LOBBYFLR1_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.4775, !- Field 4
- Until: 16:00,0.8595, !- Field 5
- Until: 22:00,0.2865, !- Field 6
- Until: 23:00,0.3, !- Field 7
- Until: 24:00,0.1, !- Field 8
- For: SummerDesignDay, !- Field 9
- Until: 24:00,1, !- Field 10
- For: WinterDesignDay, !- Field 11
- Until: 24:00,0, !- Field 12
- For: Saturday, !- Field 13
- Until: 7:00,0.1, !- Field 14
- Until: 8:00,0.191, !- Field 15
- Until: 18:00,0.382, !- Field 16
- Until: 19:00,0.0955, !- Field 17
- Until: 24:00,0.1, !- Field 18
- For: Sunday Holidays AllOtherDays, !- Field 19
- Until: 8:00,0.05, !- Field 20
- Until: 16:00,0.0955, !- Field 21
- Until: 24:00,0.05; !- Field 22
-
- Schedule:Compact,
- BLDG_LIGHT_LOBBYFLR5_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.485, !- Field 4
- Until: 16:00,0.873, !- Field 5
- Until: 22:00,0.291, !- Field 6
- Until: 23:00,0.3, !- Field 7
- Until: 24:00,0.1, !- Field 8
- For: SummerDesignDay, !- Field 9
- Until: 24:00,1, !- Field 10
- For: WinterDesignDay, !- Field 11
- Until: 24:00,0, !- Field 12
- For: Saturday, !- Field 13
- Until: 7:00,0.1, !- Field 14
- Until: 8:00,0.194, !- Field 15
- Until: 18:00,0.388, !- Field 16
- Until: 19:00,0.097, !- Field 17
- Until: 24:00,0.1, !- Field 18
- For: Sunday Holidays AllOtherDays, !- Field 19
- Until: 8:00,0.05, !- Field 20
- Until: 16:00,0.097, !- Field 21
- Until: 24:00,0.05; !- Field 22
-
- Schedule:Compact,
- BLDG_LIGHT_NURSEFLR1_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.49, !- Field 3
- Until: 16:00,0.882, !- Field 4
- Until: 24:00,0.49, !- Field 5
- For: SummerDesignDay, !- Field 6
- Until: 24:00,1, !- Field 7
- For: WinterDesignDay, !- Field 8
- Until: 24:00,0, !- Field 9
- For: Saturday, !- Field 10
- Until: 8:00,0.49, !- Field 11
- Until: 18:00,0.784, !- Field 12
- Until: 24:00,0.49, !- Field 13
- For: Sunday Holidays AllOtherDays, !- Field 14
- Until: 8:00,0.49, !- Field 15
- Until: 16:00,0.686, !- Field 16
- Until: 24:00,0.49; !- Field 17
-
- Schedule:Compact,
- BLDG_LIGHT_NURSEFLR234_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 8:00,0.485, !- Field 3
- Until: 16:00,0.873, !- Field 4
- Until: 24:00,0.485, !- Field 5
- For: SummerDesignDay, !- Field 6
- Until: 24:00,1, !- Field 7
- For: WinterDesignDay, !- Field 8
- Until: 24:00,0, !- Field 9
- For: Saturday, !- Field 10
- Until: 8:00,0.485, !- Field 11
- Until: 18:00,0.776, !- Field 12
- Until: 24:00,0.485, !- Field 13
- For: Sunday Holidays AllOtherDays, !- Field 14
- Until: 8:00,0.485, !- Field 15
- Until: 16:00,0.679, !- Field 16
- Until: 24:00,0.485; !- Field 17
-
- Schedule:Compact,
- BLDG_LIGHT_OFFICE_BSMT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.447984375, !- Field 4
- Until: 16:00,0.806371875, !- Field 5
- Until: 22:00,0.268790625, !- Field 6
- Until: 23:00,0.3, !- Field 7
- Until: 24:00,0.1, !- Field 8
- For: SummerDesignDay, !- Field 9
- Until: 24:00,1, !- Field 10
- For: WinterDesignDay, !- Field 11
- Until: 24:00,0, !- Field 12
- For: Saturday, !- Field 13
- Until: 7:00,0.1, !- Field 14
- Until: 8:00,0.17919375, !- Field 15
- Until: 18:00,0.3583875, !- Field 16
- Until: 19:00,0.089596875, !- Field 17
- Until: 24:00,0.1, !- Field 18
- For: Sunday Holidays AllOtherDays, !- Field 19
- Until: 8:00,0.05, !- Field 20
- Until: 16:00,0.089596875, !- Field 21
- Until: 24:00,0.05; !- Field 22
-
- Schedule:Compact,
- BLDG_LIGHT_OFFICE_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.40595, !- Field 4
- Until: 16:00,0.73071, !- Field 5
- Until: 22:00,0.24357, !- Field 6
- Until: 23:00,0.3, !- Field 7
- Until: 24:00,0.1, !- Field 8
- For: SummerDesignDay, !- Field 9
- Until: 24:00,1, !- Field 10
- For: WinterDesignDay, !- Field 11
- Until: 24:00,0, !- Field 12
- For: Saturday, !- Field 13
- Until: 7:00,0.1, !- Field 14
- Until: 8:00,0.16238, !- Field 15
- Until: 18:00,0.32476, !- Field 16
- Until: 19:00,0.08119, !- Field 17
- Until: 24:00,0.1, !- Field 18
- For: Sunday Holidays AllOtherDays, !- Field 19
- Until: 8:00,0.05, !- Field 20
- Until: 16:00,0.08119, !- Field 21
- Until: 24:00,0.05; !- Field 22
-
- Schedule:Compact,
- BLDG_LIGHT_RADIOLOGY_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.39, !- Field 4
- Until: 16:00,0.702, !- Field 5
- Until: 22:00,0.234, !- Field 6
- Until: 23:00,0.3, !- Field 7
- Until: 24:00,0.1, !- Field 8
- For: SummerDesignDay, !- Field 9
- Until: 24:00,1, !- Field 10
- For: WinterDesignDay, !- Field 11
- Until: 24:00,0, !- Field 12
- For: Saturday, !- Field 13
- Until: 7:00,0.1, !- Field 14
- Until: 8:00,0.156, !- Field 15
- Until: 18:00,0.312, !- Field 16
- Until: 19:00,0.078, !- Field 17
- Until: 24:00,0.1, !- Field 18
- For: Sunday Holidays AllOtherDays, !- Field 19
- Until: 8:00,0.05, !- Field 20
- Until: 16:00,0.078, !- Field 21
- Until: 24:00,0.05; !- Field 22
-
- Schedule:Compact,
- BLDG_LIGHT_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.5, !- Field 4
- Until: 16:00,0.9, !- Field 5
- Until: 23:00,0.3, !- Field 6
- Until: 24:00,0.1, !- Field 7
- For: SummerDesignDay, !- Field 8
- Until: 24:00,1, !- Field 9
- For: WinterDesignDay, !- Field 10
- Until: 24:00,0, !- Field 11
- For: Saturday, !- Field 12
- Until: 7:00,0.1, !- Field 13
- Until: 8:00,0.2, !- Field 14
- Until: 18:00,0.4, !- Field 15
- Until: 24:00,0.1, !- Field 16
- For: Sunday Holidays AllOtherDays, !- Field 17
- Until: 8:00,0.05, !- Field 18
- Until: 16:00,0.1, !- Field 19
- Until: 24:00,0.05; !- Field 20
-
-
-
-
-
-
-
-
- Schedule:Compact,
- walkin_occ_lght_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 7:00,0.1, !- Field 3
- Until: 8:00,0.26, !- Field 5
- Until: 16:00,0.468, !- Field 7
- Until: 23:00,0.156, !- Field 9
- Until: 24:00,0.1, !- Field 11
- For: SummerDesignDay, !- Field 13
- Until: 24:00,1, !- Field 14
- For: WinterDesignDay, !- Field 16
- Until: 24:00,0, !- Field 17
- For: Saturday, !- Field 19
- Until: 7:00,0.1, !- Field 20
- Until: 8:00,0.104, !- Field 22
- Until: 18:00,0.208, !- Field 24
- Until: 24:00,0.1, !- Field 26
- For: Sunday Holidays AllOtherDays, !- Field 28
- Until: 8:00,0.05, !- Field 29
- Until: 16:00,0.052, !- Field 31
- Until: 24:00,0.05; !- Field 33
-
- Schedule:Compact,
- BLDG_OCC_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 07:00,0.0, !- Field 3
- Until: 08:00,0.1, !- Field 5
- Until: 09:00,0.5, !- Field 7
- Until: 17:00,0.8, !- Field 9
- Until: 18:00,0.5, !- Field 11
- Until: 20:00,0.3, !- Field 13
- Until: 22:00,0.2, !- Field 15
- Until: 24:00,0.0, !- Field 17
- For: SummerDesignDay, !- Field 19
- Until: 24:00,1.0, !- Field 20
- For: WinterDesignDay, !- Field 22
- Until: 24:00,0.0, !- Field 23
- For: Saturday, !- Field 25
- Until: 07:00,0.0, !- Field 26
- Until: 08:00,0.1, !- Field 28
- Until: 09:00,0.3, !- Field 30
- Until: 17:00,0.4, !- Field 32
- Until: 19:00,0.1, !- Field 34
- Until: 24:00,0.0, !- Field 36
- For: Sunday Holidays AllOtherDays, !- Field 38
- Until: 08:00,0.0, !- Field 39
- Until: 16:00,0.05, !- Field 41
- Until: 24:00,0.0; !- Field 43
-
-
-
- Schedule:Compact,
- BLDG_OCC_EXTD_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 07:00,0.4, !- Field 3
- Until: 08:00,0.5, !- Field 5
- Until: 09:00,0.6, !- Field 7
- Until: 17:00,0.8, !- Field 9
- Until: 18:00,0.6, !- Field 11
- Until: 20:00,0.5, !- Field 13
- Until: 24:00,0.4, !- Field 15
- For: SummerDesignDay, !- Field 17
- Until: 24:00,1.0, !- Field 18
- For: WinterDesignDay, !- Field 20
- Until: 24:00,0.0, !- Field 21
- For: Saturday, !- Field 23
- Until: 07:00,0.4, !- Field 24
- Until: 08:00,0.5, !- Field 26
- Until: 17:00,0.6, !- Field 28
- Until: 19:00,0.5, !- Field 30
- Until: 24:00,0.4, !- Field 32
- For: Sunday Holidays AllOtherDays, !- Field 34
- Until: 08:00,0.4, !- Field 35
- Until: 16:00,0.6, !- Field 37
- Until: 24:00,0.4; !- Field 39
-
-
-
- Schedule:Compact,
- BLDG_EQUIP_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 07:00,0.3492682264, !- Field 3
- Until: 08:00,0.6818012803, !- Field 5
- Until: 16:00,0.8766016461, !- Field 7
- Until: 22:00,0.5844010974, !- Field 9
- Until: 23:00,0.5239023396, !- Field 11
- Until: 24:00,0.3492682264, !- Field 13
- For: SummerDesignDay, !- Field 15
- Until: 24:00,1.0, !- Field 16
- For: WinterDesignDay, !- Field 18
- Until: 24:00,0.0, !- Field 19
- For: Saturday, !- Field 21
- Until: 07:00,0.3492682264, !- Field 22
- Until: 08:00,0.4870009145, !- Field 24
- Until: 18:00,0.63310118885, !- Field 26
- Until: 24:00,0.3492682264, !- Field 28
- For: Sunday Holidays AllOtherDays, !- Field 30
- Until: 08:00,0.2619511698, !- Field 31
- Until: 16:00,0.3492682264, !- Field 33
- Until: 24:00,0.2619511698; !- Field 35
-
- Schedule:Compact,
- BLDG_EQUIP_EXTD_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 07:00,0.40, !- Field 3
- Until: 08:00,0.70, !- Field 5
- Until: 16:00,0.90, !- Field 7
- Until: 23:00,0.60, !- Field 9
- Until: 24:00,0.40, !- Field 11
- For: SummerDesignDay, !- Field 13
- Until: 24:00,1.0, !- Field 14
- For: WinterDesignDay, !- Field 16
- Until: 24:00,0.0, !- Field 17
- For: Saturday, !- Field 19
- Until: 07:00,0.40, !- Field 20
- Until: 08:00,0.50, !- Field 22
- Until: 18:00,0.65, !- Field 24
- Until: 24:00,0.40, !- Field 26
- For: Sunday Holidays AllOtherDays, !- Field 28
- Until: 08:00,0.40, !- Field 29
- Until: 16:00,0.60, !- Field 31
- Until: 24:00,0.40; !- Field 33
-
-
-
- Schedule:Compact,
- BLDG_ELEVATORS, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 2
- Until: 24:00,1.00, !- Field 3
- For: WinterDesignDay, !- Field 5
- Until: 24:00,0.20, !- Field 6
- For: Weekdays, !- Field 8
- Until: 07:00,0.2, !- Field 9
- Until: 08:00,0.5, !- Field 11
- Until: 09:00,0.75, !- Field 13
- Until: 10:00,1.00, !- Field 15
- Until: 11:00,1.00, !- Field 17
- Until: 12:00,1.00, !- Field 19
- Until: 13:00,0.75, !- Field 21
- Until: 14:00,1.00, !- Field 23
- Until: 15:00,1.00, !- Field 25
- Until: 16:00,1.00, !- Field 27
- Until: 17:00,1.00, !- Field 29
- Until: 18:00,1.00, !- Field 31
- Until: 19:00,0.52, !- Field 33
- Until: 20:00,0.52, !- Field 35
- Until: 21:00,0.52, !- Field 37
- Until: 22:00,0.28, !- Field 39
- Until: 24:00,0.2, !- Field 41
- For: Saturday, !- Field 43
- Until: 07:00,0.2, !- Field 44
- Until: 08:00,0.4, !- Field 46
- Until: 09:00,0.46, !- Field 48
- Until: 10:00,0.70, !- Field 50
- Until: 11:00,0.70, !- Field 52
- Until: 12:00,0.70, !- Field 54
- Until: 13:00,0.51, !- Field 56
- Until: 14:00,0.51, !- Field 58
- Until: 15:00,0.51, !- Field 60
- Until: 16:00,0.51, !- Field 62
- Until: 17:00,0.51, !- Field 64
- Until: 18:00,0.25, !- Field 66
- Until: 24:00,0.2, !- Field 68
- For: AllOtherDays, !- Field 70
- Until: 08:00,0.2, !- Field 71
- Until: 16:00,0.4, !- Field 73
- Until: 24:00,0.2; !- Field 75
-
-
-
- Schedule:Compact,
- ELEV_LIGHT_FAN_SCH_24_7, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1; !- Field 3
-
-
-
- Schedule:Compact,
- ELEV_LIGHT_FAN_SCH_ADD_DF, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: SummerDesignDay, !- Field 2
- Until: 24:00,1.00, !- Field 3
- For: WinterDesignDay, !- Field 5
- Until: 24:00,0.20, !- Field 6
- For: Weekdays, !- Field 8
- Until: 07:00,0.2, !- Field 9
- Until: 08:00,0.5, !- Field 11
- Until: 09:00,1.00, !- Field 13
- Until: 10:00,1.00, !- Field 15
- Until: 11:00,1.00, !- Field 17
- Until: 12:00,1.00, !- Field 19
- Until: 13:00,1.00, !- Field 21
- Until: 14:00,1.00, !- Field 23
- Until: 15:00,1.00, !- Field 25
- Until: 16:00,1.00, !- Field 27
- Until: 17:00,1.00, !- Field 29
- Until: 18:00,1.00, !- Field 31
- Until: 19:00,0.52, !- Field 33
- Until: 20:00,0.52, !- Field 35
- Until: 21:00,0.52, !- Field 37
- Until: 22:00,0.28, !- Field 39
- Until: 24:00,0.2, !- Field 41
- For: Saturday, !- Field 43
- Until: 07:00,0.2, !- Field 44
- Until: 08:00,0.4, !- Field 46
- Until: 09:00,0.46, !- Field 48
- Until: 10:00,0.70, !- Field 50
- Until: 11:00,0.70, !- Field 52
- Until: 12:00,0.70, !- Field 54
- Until: 13:00,0.51, !- Field 56
- Until: 14:00,0.51, !- Field 58
- Until: 15:00,0.51, !- Field 60
- Until: 16:00,0.51, !- Field 62
- Until: 17:00,0.51, !- Field 64
- Until: 18:00,0.25, !- Field 66
- Until: 24:00,0.2, !- Field 68
- For: AllOtherDays, !- Field 70
- Until: 08:00,0.2, !- Field 71
- Until: 16:00,0.4, !- Field 73
- Until: 24:00,0.2; !- Field 75
-
-
-
- Schedule:Compact,
- Dishwashing Booster Water Inlet Temp Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 24:00,60.00; !- Field 3
-
-
-
- Schedule:Compact,
- Dishwashing Booster Setpoint Temp Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 24:00,82.22; !- Field 3
-
-
-
- Schedule:Compact,
- Laundry Setpoint Temp Schedule, !- Name
- Any Number, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 24:00,82.22; !- Field 3
-
-
-
- Schedule:Compact,
- LAUNDRY_SWH_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- THROUGH: 12/31, !- Field 1
- FOR: AllDays, !- Field 2
- UNTIL: 08:00,0.00, !- Field 3
- UNTIL: 15:00,1.00, !- Field 5
- UNTIL: 24:00,0.00; !- Field 7
-
- Schedule:Compact,
- BLDG_SWH_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays SummerDesignDay, !- Field 2
- Until: 07:00,0.00, !- Field 3
- Until: 08:00,0.17, !- Field 5
- Until: 09:00,0.58, !- Field 7
- Until: 10:00,0.66, !- Field 9
- Until: 11:00,0.78, !- Field 11
- Until: 12:00,0.82, !- Field 13
- Until: 13:00,0.71, !- Field 15
- Until: 14:00,0.82, !- Field 17
- Until: 15:00,0.78, !- Field 19
- Until: 16:00,0.74, !- Field 21
- Until: 17:00,0.63, !- Field 23
- Until: 18:00,0.41, !- Field 25
- Until: 21:00,0.18, !- Field 27
- Until: 22:00,0.1, !- Field 29
- Until: 24:00,0.00, !- Field 31
- For: Saturday WinterDesignDay, !- Field 33
- Until: 07:00,0.00, !- Field 34
- Until: 08:00,0.01, !- Field 36
- Until: 09:00,0.2, !- Field 38
- Until: 10:00,0.28, !- Field 40
- Until: 12:00,0.3, !- Field 42
- Until: 14:00,0.24, !- Field 44
- Until: 17:00,0.23, !- Field 46
- Until: 19:00,0.10, !- Field 48
- Until: 24:00,0.00, !- Field 50
- For: Sunday Holidays AllOtherDays, !- Field 52
- Until: 08:00,0.00, !- Field 53
- Until: 16:00,0.01, !- Field 55
- Until: 24:00,0.00; !- Field 57
-
-
-
- Schedule:Compact,
- BLDG_SWH_EXTD_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays SummerDesignDay, !- Field 2
- Until: 07:00,0.3, !- Field 3
- Until: 08:00,0.5, !- Field 5
- Until: 09:00,0.58, !- Field 7
- Until: 10:00,0.66, !- Field 9
- Until: 11:00,0.78, !- Field 11
- Until: 12:00,0.82, !- Field 13
- Until: 13:00,0.71, !- Field 15
- Until: 14:00,0.82, !- Field 17
- Until: 15:00,0.78, !- Field 19
- Until: 16:00,0.74, !- Field 21
- Until: 17:00,0.63, !- Field 23
- Until: 18:00,0.41, !- Field 25
- Until: 21:00,0.35, !- Field 27
- Until: 24:00,0.30, !- Field 29
- For: Saturday WinterDesignDay, !- Field 31
- Until: 08:00,0.3, !- Field 32
- Until: 09:00,0.4, !- Field 34
- Until: 10:00,0.5, !- Field 36
- Until: 17:00,0.6, !- Field 38
- Until: 18:00,0.5, !- Field 40
- Until: 24:00,0.3, !- Field 42
- For: Sunday Holidays AllOtherDays, !- Field 44
- Until: 08:00,0.3, !- Field 45
- Until: 09:00,0.4, !- Field 47
- Until: 10:00,0.5, !- Field 49
- Until: 17:00,0.6, !- Field 51
- Until: 18:00,0.5, !- Field 53
- Until: 24:00,0.3; !- Field 55
-
- Schedule:Compact,
- ACTIVITY_SCH, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,120.; !- Field 3
-
- Schedule:Compact,
- WORK_EFF_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.0; !- Field 3
-
- Schedule:Compact,
- AIR_VELO_SCH, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- CLOTHING_SCH, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 04/30, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0, !- Field 3
- Through: 09/30, !- Field 5
- For: AllDays, !- Field 6
- Until: 24:00,0.5, !- Field 7
- Through: 12/31, !- Field 9
- For: AllDays, !- Field 10
- Until: 24:00,1.0; !- Field 11
-
- Schedule:Compact,
- INFIL_SCH_PNNL, !- Name
- fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays SummerDesignDay, !- Field 2
- Until: 24:00,0.25, !- Field 3
- For: Saturday WinterDesignDay, !- Field 5
- Until: 24:00,0.25, !- Field 6
- For: Sunday Holidays AllOtherDays, !- Field 8
- Until: 24:00,0.25; !- Field 9
-
- Schedule:Compact,
- SHADING_SCH, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.0; !- Field 3
-
- Schedule:Compact,
- PlantOnSched, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- ReheatCoilAvailSched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- CoolingCoilAvailSched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- HTGSETP_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: ALLDays, !- Field 2
- Until: 24:00,21.; !- Field 3
-
- Schedule:Compact,
- CLGSETP_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,24.0; !- Field 3
-
- Schedule:Compact,
- Humidity Setpoint Schedule, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays SummerDesignDay, !- Field 2
- Until: 24:00,50, !- Field 3
- For: Saturday WinterDesignDay, !- Field 5
- Until: 24:00,50, !- Field 6
- For: Sunday Holidays AllOtherDays, !- Field 8
- Until: 24:00,50; !- Field 9
-
- Schedule:Compact,
- MinOA_Sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0; !- Field 3
-
- Schedule:Compact,
- BLDG_OA_FRAC_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 06:00,0.00, !- Field 3
- Until: 18:00,0.25, !- Field 5
- Until: 24:00,0.00, !- Field 7
- For: SummerDesignDay, !- Field 9
- Until: 06:00,0.00, !- Field 10
- Until: 18:00,0.25, !- Field 12
- Until: 24:00,0.00, !- Field 14
- For: WinterDesignDay, !- Field 16
- Until: 06:00,0.00, !- Field 17
- Until: 18:00,0.25, !- Field 19
- Until: 24:00,0.00, !- Field 21
- For: Saturday, !- Field 23
- Until: 06:00,0.00, !- Field 24
- Until: 18:00,0.25, !- Field 26
- Until: 24:00,0.00, !- Field 28
- For: Sunday Holidays AllOtherDays, !- Field 30
- Until: 24:00,0.00; !- Field 31
-
- Schedule:Compact,
- OR_MinSA_Sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Weekdays, !- Field 2
- Until: 09:00,0.2, !- Field 3 This is changed to a PARM variable because 2015 IECC has 30pct minimum MDP and 90.1-2010 has 20pct minimum.
- Until: 18:00,1.0, !- Field 5
- Until: 24:00,0.2, !- Field 7
- For: SummerDesignDay, !- Field 9
- Until: 24:00,1.0, !- Field 10
- For: WinterDesignDay, !- Field 12
- Until: 24:00,0.2, !- Field 13
- For: Saturday, !- Field 15
- Until: 09:00,0.2, !- Field 16
- Until: 17:00,1.0, !- Field 18
- Until: 24:00,0.2, !- Field 20
- For: Sunday Holidays AllOtherDays, !- Field 22
- Until: 24:00,0.2; !- Field 23
-
- Schedule:Compact,
- VAV_ER_OAminOAFracSchedule, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.3300; !- Field 3
-
- Schedule:Compact,
- VAV_OR_OAminOAFracSchedule, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.3300; !- Field 3
-
- Schedule:Compact,
- VAV_ICU_OAminOAFracSchedule, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.3300; !- Field 3
-
- Schedule:Compact,
- VAV_PATRMS_OAminOAFracSchedule, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.3300; !- Field 3
-
- Schedule:Compact,
- VAV_LABS_OAminOAFracSchedule, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,1.0000; !- Field 3
-
- Schedule:Compact,
- Dual Zone Control Type Sched, !- Name
- Control Type, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,4; !- Field 3
-
- Schedule:Compact,
- Cool-Supply-Air-Temp-Sch,!- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,12.8; !- Field 3
-
- Schedule:Compact,
- Heat-Supply-Air-Temp-Sch,!- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,12.8; !- Field 3
-
- Schedule:Compact,
- CW-Loop-Temp-Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,6.7; !- Field 3
-
- Schedule:Compact,
- HW-Loop-Temp-Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,82; !- Field 3
-
- Schedule:Compact,
- ER_Exam1_Mult4_Flr_1 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- ER_Exam1_Mult4_Flr_1 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- ER_Exam1_Mult4_Flr_1 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- ER_Exam1_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- ER_Trauma1_Flr_1 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- ER_Trauma1_Flr_1 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- ER_Trauma1_Flr_1 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- ER_Trauma1_Flr_1 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- ER_Exam3_Mult4_Flr_1 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- ER_Exam3_Mult4_Flr_1 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- ER_Exam3_Mult4_Flr_1 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- ER_Exam3_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- ER_Trauma2_Flr_1 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- ER_Trauma2_Flr_1 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- ER_Trauma2_Flr_1 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- ER_Trauma2_Flr_1 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- ER_Triage_Mult4_Flr_1 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- ER_Triage_Mult4_Flr_1 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- ER_Triage_Mult4_Flr_1 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- ER_Triage_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- OR1_Flr_2 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- OR1_Flr_2 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- OR1_Flr_2 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- OR1_Flr_2 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- OR2_Mult5_Flr_2 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- OR2_Mult5_Flr_2 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- OR2_Mult5_Flr_2 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- OR2_Mult5_Flr_2 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- OR3_Flr_2 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- OR3_Flr_2 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- OR3_Flr_2 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- OR3_Flr_2 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- OR4_Flr_2 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- OR4_Flr_2 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- OR4_Flr_2 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- OR4_Flr_2 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PhysTherapy_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PhysTherapy_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PhysTherapy_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PhysTherapy_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_3 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_3 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_3 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_3 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom1_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom2_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom3_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom4_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom5_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- Radiology_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- Radiology_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- Radiology_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- Radiology_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom6_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom7_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- PatRoom8_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_4 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_4 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_4 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- Lab_Flr_4 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- Kitchen_Flr_5 sub cat Latent fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.05; !- Field 3
-
- Schedule:Compact,
- Kitchen_Flr_5 sub cat Sensible fract sched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0.2; !- Field 3
-
-
- Schedule:Compact,
- Kitchen_Flr_5 sub cat Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- Kitchen_Flr_5 sub catHot Supply Temp Sched, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,55; !- Field 3
-
- Schedule:Compact,
- Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDefrost2aDaySched, !- Name
- ON/OFF, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For:AllDays, !- Field 2
- Interpolate:Average, !- Field 3
- Until: 11:00,0, !- Field 4
- Until: 11:20,1, !- Field 6
- Until: 23:00,0, !- Field 8
- Until: 23:20,1, !- Field 10
- Until: 24:00,0; !- Field 12
-
- Schedule:Compact,
- Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDripDown2aDaySched, !- Name
- ON/OFF, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For:AllDays, !- Field 2
- Interpolate:Average, !- Field 3
- Until: 11:00,0, !- Field 4
- Until: 11:30,1, !- Field 6
- Until: 23:00,0, !- Field 8
- Until: 23:30,1, !- Field 10
- Until: 24:00,0; !- Field 12
-
- Schedule:Compact,
- Kitchen_Flr_5_Case:1_WALKINFREEZER_WalkInStockingSched, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: Tuesday Friday, !- Field 2
- Until: 4:00,0.0, !- Field 3
- Until: 5:00,725.0, !- Field 5
- Until: 6:00,417.0, !- Field 7
- Until: 7:00,290.0, !- Field 9
- Until: 24:00,0.0, !- Field 11
- For: AllOtherDays, !- Field 13
- Until: 4:00,0.0, !- Field 14
- Until: 5:00,125.0, !- Field 16
- Until: 6:00,117.0, !- Field 18
- Until: 7:00,90.0, !- Field 20
- Until: 19:00,0.0, !- Field 22
- Until: 20:00,125.0, !- Field 24
- Until: 21:00,117.0, !- Field 26
- Until: 22:00,90.0, !- Field 28
- Until: 24:00,0.0; !- Field 30
-
- Schedule:Compact,
- Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseCreditReduxSched, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For:AllDays, !- Field 2
- Interpolate:No, !- Field 3
- Until: 7:00,0.2, !- Field 4
- Until: 21:00,0.4, !- Field 6
- Until: 24:00,0.2; !- Field 8
-
- Schedule:Compact,
- Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For:AllDays, !- Field 2
- Until: 6:00,0.0, !- Field 3
- Until: 7:00,50.0, !- Field 5
- Until: 9:00,70.0, !- Field 7
- Until: 10:00,80.0, !- Field 9
- Until: 11:00,70.0, !- Field 11
- Until: 13:00,50.0, !- Field 13
- Until: 14:00,80.0, !- Field 15
- Until: 15:00,90.0, !- Field 17
- Until: 16:00,80.0, !- Field 19
- Until: 24:00,0.0; !- Field 21
-
-
-
- Schedule:Compact,
- Kitchen_Exhaust_SCH, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 07:00,0, !- Field 3
- Until: 24:00,1; !- Field 5
-
-!- Per 90.1-2010 G3.1.3.11, the tower shall be controlled to maintain a 70F leaving water temperature
-!- where weather permits, floating up to leaving water temperature at design conditions.
- Schedule:Compact,
- Tower-Loop-Temp-Schedule,!- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,21.1; !- Field 3
-
- Schedule:Compact,
- SHWSys1-Loop-Temp-Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60; !- Field 3
-
- Schedule:Compact,
- SHWSys1 Water Heater Setpoint Temperature Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60.0; !- Field 3
-
- Schedule:Compact,
- SHWSys1 Water Heater Ambient Temperature Schedule, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,22.0; !- Field 3
-
- Schedule:Compact,
- VAV_SAT_SCH, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,12.8; !- Field 3
-
-
-
- Schedule:Compact,
- MinRelHumSetSch, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,40; !- Field 3
-
- Schedule:Compact,
- MinRelHumSetSch_addDI, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,30; !- Field 3
-
-
-
- Schedule:Compact,
- MinRelHumSetSch_addDI_ICU, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,35; !- Field 3
-
- Schedule:Compact,
- MaxRelHumSetSch, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,60; !- Field 3
-
-
- Schedule:Constant,
- VAV_1 Max OA Fraction, !- Name
- , !- Schedule Type Limits Name
- 1.0; !- Hourly Value
-
- Schedule:Constant,
- VAV_2 Max OA Fraction, !- Name
- , !- Schedule Type Limits Name
- 1.0; !- Hourly Value
-
-
-
- Schedule:Constant,
- Heat Recovery Chiller Setpoint,
- Temperature,
- 48.89;
-
- Schedule:Constant,
- Dummy Water Heater Setpoint,
- Temperature,
- 10.0; !- Low enough to ensure that the burner doesn't turn on
-
- Schedule:Constant,
- Bypass Heat Exchanger Status,
- Any Number,
- 1;
-
-
-!- =========== ALL OBJECTS IN CLASS: PEOPLE ===========
-
- People,
- Basement, !- Name
- Basement, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 100.5885, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ER_Exam1_Mult4_Flr_1, !- Name
- ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.9976, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ER_Trauma1_Flr_1, !- Name
- ER_Trauma1_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.9976, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ER_Exam3_Mult4_Flr_1, !- Name
- ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.9976, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ER_Trauma2_Flr_1, !- Name
- ER_Trauma2_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.9976, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ER_Triage_Mult4_Flr_1, !- Name
- ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.9976, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Office1_Mult4_Flr_1, !- Name
- Office1_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.05, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Lobby_Records_Flr_1, !- Name
- Lobby_Records_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 21.1586, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_Flr_1, !- Name
- Corridor_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 6.1228, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ER_NurseStn_Lobby_Flr_1, !- Name
- ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 17.7269, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- OR1_Flr_2, !- Name
- OR1_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.9988, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- OR2_Mult5_Flr_2, !- Name
- OR2_Mult5_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.9988, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- OR3_Flr_2, !- Name
- OR3_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 2.9988, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- OR4_Flr_2, !- Name
- OR4_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 11.9956, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- IC_PatRoom1_Mult5_Flr_2, !- Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.1244, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- IC_PatRoom2_Flr_2, !- Name
- IC_PatRoom2_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.4994, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- IC_PatRoom3_Mult6_Flr_2, !- Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.1244, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ICU_Flr_2, !- Name
- ICU_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 33.2462, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- ICU_NurseStn_Lobby_Flr_2,!- Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 9.5946, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_Flr_2, !- Name
- Corridor_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 6.1228, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- OR_NurseStn_Lobby_Flr_2, !- Name
- OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 14.528, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom1_Mult10_Flr_3, !- Name
- PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.1244, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom2_Flr_3, !- Name
- PatRoom2_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.8744, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom3_Mult10_Flr_3, !- Name
- PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.0873, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom4_Flr_3, !- Name
- PatRoom4_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.8744, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom5_Mult10_Flr_3, !- Name
- PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.1244, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PhysTherapy_Flr_3, !- Name
- PhysTherapy_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 26.2404, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom6_Flr_3, !- Name
- PatRoom6_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.4994, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom7_Mult10_Flr_3, !- Name
- PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.0873, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom8_Flr_3, !- Name
- PatRoom8_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.4994, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- NurseStn_Lobby_Flr_3, !- Name
- NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 12.9952, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Lab_Flr_3, !- Name
- Lab_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 14.2446, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_SE_Flr_3, !- Name
- Corridor_SE_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 6.0978, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_NW_Flr_3, !- Name
- Corridor_NW_Flr_3, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 6.0978, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom1_Mult10_Flr_4, !- Name
- PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.1244, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom2_Flr_4, !- Name
- PatRoom2_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.8744, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom3_Mult10_Flr_4, !- Name
- PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.0873, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom4_Flr_4, !- Name
- PatRoom4_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.8744, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom5_Mult10_Flr_4, !- Name
- PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.1244, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Radiology_Flr_4, !- Name
- Radiology_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 26.2404, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom6_Flr_4, !- Name
- PatRoom6_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.4994, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom7_Mult10_Flr_4, !- Name
- PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.0873, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- PatRoom8_Flr_4, !- Name
- PatRoom8_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.4994, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- NurseStn_Lobby_Flr_4, !- Name
- NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 12.9952, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Lab_Flr_4, !- Name
- Lab_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 14.2446, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_SE_Flr_4, !- Name
- Corridor_SE_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 6.0978, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_NW_Flr_4, !- Name
- Corridor_NW_Flr_4, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 6.0978, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Dining_Flr_5, !- Name
- Dining_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 74.9725, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- NurseStn_Lobby_Flr_5, !- Name
- NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 14.9279, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Kitchen_Flr_5, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 49.9818, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Office1_Flr_5, !- Name
- Office1_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.2498, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Office2_Mult5_Flr_5, !- Name
- Office2_Mult5_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.2483, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Office3_Flr_5, !- Name
- Office3_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.2483, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Office4_Mult6_Flr_5, !- Name
- Office4_Mult6_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 1.05, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
- People,
- Corridor_Flr_5, !- Name
- Corridor_Flr_5, !- Zone or ZoneList Name
- BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name
- People, !- Number of People Calculation Method
- 5.3981, !- Number of People
- , !- People per Zone Floor Area {person/m2}
- , !- Zone Floor Area per Person {m2/person}
- 0.3000, !- Fraction Radiant
- AUTOCALCULATE, !- Sensible Heat Fraction
- ACTIVITY_SCH, !- Activity Level Schedule Name
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- No, !- Enable ASHRAE 55 Comfort Warnings
- ZoneAveraged, !- Mean Radiant Temperature Calculation Type
- , !- Surface Name/Angle Factor List Name
- WORK_EFF_SCH, !- Work Efficiency Schedule Name
- ClothingInsulationSchedule, !- Clothing Insulation Calculation Method
- , !- Clothing Insulation Calculation Method Schedule Name
- CLOTHING_SCH, !- Clothing Insulation Schedule Name
- AIR_VELO_SCH, !- Air Velocity Schedule Name
- FANGER; !- Thermal Comfort Model 1 Type
-
-!- =========== ALL OBJECTS IN CLASS: LIGHTS ===========
-
- Lights,
- Basement_Lights, !- Name
- Basement, !- Zone or ZoneList Name
- BLDG_LIGHT_OFFICE_BSMT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.888902667, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
-
-
- Lights,
- ER_Exam1_Mult4_Flr_1_Lights, !- Name
- ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_EXAM_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 15.06947458, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ER_Trauma1_Flr_1_Lights, !- Name
- ER_Trauma1_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 15.06947458, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ER_Exam3_Mult4_Flr_1_Lights, !- Name
- ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_EXAM_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 15.06947458, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ER_Trauma2_Flr_1_Lights, !- Name
- ER_Trauma2_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 15.06947458, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ER_Triage_Mult4_Flr_1_Lights, !- Name
- ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 15.06947458, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Office1_Mult4_Flr_1_Lights, !- Name
- Office1_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_OFFICE_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.888902667, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lobby_Records_Flr_1_Lights, !- Name
- Lobby_Records_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_LOBBYFLR1_SCH,!- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 8.794114811, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_Flr_1_Lights, !- Name
- Corridor_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ER_NurseStn_Lobby_Flr_1_Lights, !- Name
- ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name
- BLDG_LIGHT_NURSEFLR1_SCH,!- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 11.17293901, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- OR1_Flr_2_Lights, !- Name
- OR1_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 24.32643754, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- OR2_Mult5_Flr_2_Lights, !- Name
- OR2_Mult5_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 24.32643754, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- OR3_Flr_2_Lights, !- Name
- OR3_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 24.32643754, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- OR4_Flr_2_Lights, !- Name
- OR4_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 24.32643754, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- IC_PatRoom1_Mult5_Flr_2_Lights, !- Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 13.45488802, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- IC_PatRoom2_Flr_2_Lights,!- Name
- IC_PatRoom2_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 13.45488802, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- IC_PatRoom3_Mult6_Flr_2_Lights, !- Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 13.45488802, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ICU_Flr_2_Lights, !- Name
- ICU_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 13.45488802, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- ICU_NurseStn_Lobby_Flr_2_Lights, !- Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 12.59377519,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_Flr_2_Lights, !- Name
- Corridor_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- OR_NurseStn_Lobby_Flr_2_Lights, !- Name
- OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name
- BLDG_LIGHT_NURSEFLR234_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 10.46252093, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom1_Mult10_Flr_3_Lights, !- Name
- PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom2_Flr_3_Lights, !- Name
- PatRoom2_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom3_Mult10_Flr_3_Lights, !- Name
- PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom4_Flr_3_Lights, !- Name
- PatRoom4_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom5_Mult10_Flr_3_Lights, !- Name
- PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PhysTherapy_Flr_3_Lights,!- Name
- PhysTherapy_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_RADIOLOGY_SCH,!- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 9.795158479, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom6_Flr_3_Lights, !- Name
- PatRoom6_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom7_Mult10_Flr_3_Lights, !- Name
- PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom8_Flr_3_Lights, !- Name
- PatRoom8_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- NurseStn_Lobby_Flr_3_Lights, !- Name
- NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_NURSEFLR234_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 10.46252093, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lab_Flr_3_Lights, !- Name
- Lab_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 14.31600085, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_SE_Flr_3_Lights,!- Name
- Corridor_SE_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_NW_Flr_3_Lights,!- Name
- Corridor_NW_Flr_3, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom1_Mult10_Flr_4_Lights, !- Name
- PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom2_Flr_4_Lights, !- Name
- PatRoom2_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom3_Mult10_Flr_4_Lights, !- Name
- PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom4_Flr_4_Lights, !- Name
- PatRoom4_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom5_Mult10_Flr_4_Lights, !- Name
- PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Radiology_Flr_4_Lights, !- Name
- Radiology_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_RADIOLOGY_SCH,!- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 10.11807579, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom6_Flr_4_Lights, !- Name
- PatRoom6_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom7_Mult10_Flr_4_Lights, !- Name
- PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- PatRoom8_Flr_4_Lights, !- Name
- PatRoom8_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.319459084, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- NurseStn_Lobby_Flr_4_Lights, !- Name
- NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_NURSEFLR234_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 10.46252093, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Lab_Flr_4_Lights, !- Name
- Lab_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 14.31600085, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_SE_Flr_4_Lights,!- Name
- Corridor_SE_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_NW_Flr_4_Lights,!- Name
- Corridor_NW_Flr_4, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Dining_Flr_5_Lights, !- Name
- Dining_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 4.305564167,!- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- NurseStn_Lobby_Flr_5_Lights, !- Name
- NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_LOBBYFLR5_SCH,!- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 10.46252093, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Kitchen_Flr_5_Lights, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_EXTD_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 11.73266235, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Office1_Flr_5_Lights, !- Name
- Office1_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_OFFICE_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.888902667, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Office2_Mult5_Flr_5_Lights, !- Name
- Office2_Mult5_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_OFFICE_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.888902667, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Office3_Flr_5_Lights, !- Name
- Office3_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_OFFICE_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.888902667, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Office4_Mult6_Flr_5_Lights, !- Name
- Office4_Mult6_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_OFFICE_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 6.888902667, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
- Lights,
- Corridor_Flr_5_Lights, !- Name
- Corridor_Flr_5, !- Zone or ZoneList Name
- BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 7.642376396, !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Return Air Fraction
- 0.7000, !- Fraction Radiant
- 0.2000, !- Fraction Visible
- 1.0000, !- Fraction Replaceable
- LightsWired, !- End-Use Subcategory
- No; !- Return Air Fraction Calculated from Plenum Temperature
-
-!- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT ===========
-
- ElectricEquipment,
- Basement_MiscPlug_Equip, !- Name
- Basement, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 30176.5332, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ER_Exam1_Mult4_Flr_1_MiscPlug_Equip, !- Name
- ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 449.8365, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ER_Trauma1_Flr_1_MiscPlug_Equip, !- Name
- ER_Trauma1_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 1199.5641, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ER_Exam3_Mult4_Flr_1_MiscPlug_Equip, !- Name
- ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 449.8365, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ER_Trauma2_Flr_1_MiscPlug_Equip, !- Name
- ER_Trauma2_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 1199.5641, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ER_Triage_Mult4_Flr_1_MiscPlug_Equip, !- Name
- ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 599.9803, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Office1_Mult4_Flr_1_MiscPlug_Equip, !- Name
- Office1_Mult4_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 164.9958, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Lobby_Records_Flr_1_MiscPlug_Equip, !- Name
- Lobby_Records_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 1592.7955, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ER_NurseStn_Lobby_Flr_1_MiscPlug_Equip, !- Name
- ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 18076.9806, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- OR1_Flr_2_MiscPlug_Equip,!- Name
- OR1_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 2399.1281, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- OR2_Mult5_Flr_2_MiscPlug_Equip, !- Name
- OR2_Mult5_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 2399.1281, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- OR3_Flr_2_MiscPlug_Equip,!- Name
- OR3_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 2399.1281, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- OR4_Flr_2_MiscPlug_Equip,!- Name
- OR4_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 9596.5124, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- IC_PatRoom1_Mult5_Flr_2_MiscPlug_Equip, !- Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 674.7548, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- IC_PatRoom2_Flr_2_MiscPlug_Equip, !- Name
- IC_PatRoom2_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 899.6730, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- IC_PatRoom3_Mult6_Flr_2_MiscPlug_Equip, !- Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 674.7548, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ICU_Flr_2_MiscPlug_Equip,!- Name
- ICU_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 19947.8932, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- ICU_NurseStn_Lobby_Flr_2_MiscPlug_Equip, !- Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 14391.8825, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- OR_NurseStn_Lobby_Flr_2_MiscPlug_Equip, !- Name
- OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 11331.4767, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom1_Mult10_Flr_3_MiscPlug_Equip, !- Name
- PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 449.8365, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom2_Flr_3_MiscPlug_Equip, !- Name
- PatRoom2_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.7275, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom3_Mult10_Flr_3_MiscPlug_Equip, !- Name
- PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 434.8813, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom4_Flr_3_MiscPlug_Equip, !- Name
- PatRoom4_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.7275, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom5_Mult10_Flr_3_MiscPlug_Equip, !- Name
- PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 449.8365, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PhysTherapy_Flr_3_MiscPlug_Equip, !- Name
- PhysTherapy_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 7872.1391, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom6_Flr_3_MiscPlug_Equip, !- Name
- PatRoom6_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 599.7820, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom7_Mult10_Flr_3_MiscPlug_Equip, !- Name
- PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 434.8813, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom8_Flr_3_MiscPlug_Equip, !- Name
- PatRoom8_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 599.7820, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- NurseStn_Lobby_Flr_3_MiscPlug_Equip, !- Name
- NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 10135.9539, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Lab_Flr_3_MiscPlug_Equip,!- Name
- Lab_Flr_3, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 11395.8585, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom1_Mult10_Flr_4_MiscPlug_Equip, !- Name
- PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 449.8365, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom2_Flr_4_MiscPlug_Equip, !- Name
- PatRoom2_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.7275, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom3_Mult10_Flr_4_MiscPlug_Equip, !- Name
- PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 434.8813, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom4_Flr_4_MiscPlug_Equip, !- Name
- PatRoom4_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.7275, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom5_Mult10_Flr_4_MiscPlug_Equip, !- Name
- PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 449.8365, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Radiology_Flr_4_MiscPlug_Equip, !- Name
- Radiology_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 52499.8946, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom6_Flr_4_MiscPlug_Equip, !- Name
- PatRoom6_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 599.7820, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom7_Mult10_Flr_4_MiscPlug_Equip, !- Name
- PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 434.8813, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- PatRoom8_Flr_4_MiscPlug_Equip, !- Name
- PatRoom8_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 599.7820, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- NurseStn_Lobby_Flr_4_MiscPlug_Equip, !- Name
- NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 10135.9539, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Lab_Flr_4_MiscPlug_Equip,!- Name
- Lab_Flr_4, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 11395.8585, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Dining_Flr_5_MiscPlug_Equip, !- Name
- Dining_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 7497.2753, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- NurseStn_Lobby_Flr_5_MiscPlug_Equip, !- Name
- NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 11643.3522, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
-
- ElectricEquipment,
- Kitchen_Flr_5_MiscPlug_Equip, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 74972.7533, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- Cooking; !- End-Use Subcategory
-
-
-
- ElectricEquipment,
- Office1_Flr_5_MiscPlug_Equip, !- Name
- Office1_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.9243, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Office2_Mult5_Flr_5_MiscPlug_Equip, !- Name
- Office2_Mult5_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.7275, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Office3_Flr_5_MiscPlug_Equip, !- Name
- Office3_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 749.7275, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
- ElectricEquipment,
- Office4_Mult6_Flr_5_MiscPlug_Equip, !- Name
- Office4_Mult6_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 149.9455, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- MiscPlug; !- End-Use Subcategory
-
-
-
- Exterior:FuelEquipment,
- Elevators, !- Name
- Electricity, !- Fuel Use Type
- BLDG_ELEVATORS, !- Schedule Name
- 162962.637362637, !- Design Level {W}
- ElevatorLift; !- End-Use Subcategory
-
- Exterior:FuelEquipment,
- Elevators_Lights_Fan, !- Name
- Electricity, !- Fuel Use Type
- ELEV_LIGHT_FAN_SCH_ADD_DF, !- Schedule Name
- 501, !- Design Level {W}
- ElevatorLightsFan; !- End-Use Subcategory
-
- ElectricEquipment,
- Kitchen_Flr_5_Reach-in-Freezer, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- Always_on, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 555, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.2500, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- ReachInFreezer; !- End-Use Subcategory
-
- ElectricEquipment,
- Kitchen_Flr_5_Reach-in-Refrigerator, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- Always_on, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 470, !- Design Level {W}
- , !- Watts per Zone Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.2500, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- ReachInRefrigerator; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: GAS EQUIPMENT ===========
-
- GasEquipment,
- Kitchen_Flr_5_MiscPlugGas_Equip, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- BLDG_EQUIP_EXTD_SCH, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 149945.5066, !- Design Level {W}
- , !- Power per Zone Floor Area {W/m2}
- , !- Power per Person {W/person}
- 0.0000, !- Fraction Latent
- 0.5000, !- Fraction Radiant
- 0.0000, !- Fraction Lost
- , !- Carbon Dioxide Generation Rate {m3/s-W}
- Cooking; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: EXTERIORLIGHTS ===========
-
- Exterior:Lights,
- Exterior_Lights, !- Name
- Exterior_Lgt_ALWAYS_ON, !- Schedule Name
- 9863, !- Design Level {W}
- AstronomicalClock, !- Control Option
- General; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: DAYLIGHTING:CONTROLS ===========
-
- Daylighting:Controls,
- Office1_Flr_5_DaylCtrl, !- Name
- Office1_Flr_5, !- Zone Name
- SplitFlux, !- Daylighting Method
- , !- Availability Schedule Name
- Continuousoff, !- Lighting Control Type
- 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control
- 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control
- 3, !- Number of Stepped Control Steps
- 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
- Office1_Flr_5_DaylRefPt1,!- Glare Calculation Daylighting Reference Point Name
- 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg}
- 22.0, !- Maximum Allowable Discomfort Glare Index
- , !- DElight Gridding Resolution {m2}
- Office1_Flr_5_DaylRefPt1,!- Daylighting Reference Point 1 Name
- 0.56, !- Fraction of Zone Controlled by Reference Point 1
- 377, !- Illuminance Setpoint at Reference Point 1 {lux}
- Office1_Flr_5_DaylRefPt2,!- Daylighting Reference Point 2 Name
- 0.21, !- Fraction of Zone Controlled by Reference Point 2
- 377; !- Illuminance Setpoint at Reference Point 2 {lux}
-
- Daylighting:ReferencePoint,
- Office1_Flr_5_DaylRefPt1,!- Name
- Office1_Flr_5, !- Zone Name
- 6.096000, !- X-Coordinate of Reference Point {m}
- 2.859000, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:ReferencePoint,
- Office1_Flr_5_DaylRefPt2,!- Name
- Office1_Flr_5, !- Zone Name
- 2.859000, !- X-Coordinate of Reference Point {m}
- 5.183600, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:Controls,
- Office3_Flr_5_DaylCtrl, !- Name
- Office3_Flr_5, !- Zone Name
- SplitFlux, !- Daylighting Method
- , !- Availability Schedule Name
- Continuousoff, !- Lighting Control Type
- 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control
- 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control
- 3, !- Number of Stepped Control Steps
- 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
- Office3_Flr_5_DaylRefPt1,!- Glare Calculation Daylighting Reference Point Name
- 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg}
- 22.0, !- Maximum Allowable Discomfort Glare Index
- , !- DElight Gridding Resolution {m2}
- Office3_Flr_5_DaylRefPt1,!- Daylighting Reference Point 1 Name
- 0.56, !- Fraction of Zone Controlled by Reference Point 1
- 377.0, !- Illuminance Setpoint at Reference Point 1 {lux}
- Office3_Flr_5_DaylRefPt2,!- Daylighting Reference Point 2 Name
- 0.21, !- Fraction of Zone Controlled by Reference Point 2
- 377.0; !- Illuminance Setpoint at Reference Point 2 {lux}
-
- Daylighting:ReferencePoint,
- Office3_Flr_5_DaylRefPt1,!- Name
- Office3_Flr_5, !- Zone Name
- 6.096000, !- X-Coordinate of Reference Point {m}
- 50.481000, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:ReferencePoint,
- Office3_Flr_5_DaylRefPt2,!- Name
- Office3_Flr_5, !- Zone Name
- 2.859000, !- X-Coordinate of Reference Point {m}
- 48.158400, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:Controls,
- Lobby_Records_Flr_1_DaylCtrl, !- Name
- Lobby_Records_Flr_1, !- Zone Name
- SplitFlux, !- Daylighting Method
- , !- Availability Schedule Name
- Continuousoff, !- Lighting Control Type
- 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control
- 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control
- 3, !- Number of Stepped Control Steps
- 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
- Lobby_Records_Flr_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name
- 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg}
- 22.0, !- Maximum Allowable Discomfort Glare Index
- , !- DElight Gridding Resolution {m2}
- Lobby_Records_Flr_1_DaylRefPt1, !- Daylighting Reference Point 1 Name
- 0.15, !- Fraction of Zone Controlled by Reference Point 1
- 269; !- Illuminance Setpoint at Reference Point 1 {lux}
-
- Daylighting:ReferencePoint,
- Lobby_Records_Flr_1_DaylRefPt1, !- Name
- Lobby_Records_Flr_1, !- Zone Name
- 2.859000, !- X-Coordinate of Reference Point {m}
- 26.670000, !- Y-Coordinate of Reference Point {m}
- 0.762000; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:Controls,
- Office4_Mult6_Flr_5_DaylCtrl, !- Name
- Office4_Mult6_Flr_5, !- Zone Name
- SplitFlux, !- Daylighting Method
- , !- Availability Schedule Name
- Continuousoff, !- Lighting Control Type
- 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control
- 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control
- 3, !- Number of Stepped Control Steps
- 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
- Office4_Mult6_Flr_5_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name
- 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg}
- 22.0, !- Maximum Allowable Discomfort Glare Index
- , !- DElight Gridding Resolution {m2}
- Office4_Mult6_Flr_5_DaylRefPt1, !- Daylighting Reference Point 1 Name
- 0.94, !- Fraction of Zone Controlled by Reference Point 1
- 377.0; !- Illuminance Setpoint at Reference Point 1 {lux}
-
- Daylighting:ReferencePoint,
- Office4_Mult6_Flr_5_DaylRefPt1, !- Name
- Office4_Mult6_Flr_5, !- Zone Name
- 10.668000, !- X-Coordinate of Reference Point {m}
- 50.481000, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:Controls,
- Office2_Mult5_Flr_5_DaylCtrl, !- Name
- Office2_Mult5_Flr_5, !- Zone Name
- SplitFlux, !- Daylighting Method
- , !- Availability Schedule Name
- Continuousoff, !- Lighting Control Type
- 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control
- 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control
- 3, !- Number of Stepped Control Steps
- 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
- Office2_Mult5_Flr_5_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name
- 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg}
- 22.0, !- Maximum Allowable Discomfort Glare Index
- , !- DElight Gridding Resolution {m2}
- Office2_Mult5_Flr_5_DaylRefPt1, !- Daylighting Reference Point 1 Name
- 0.47, !- Fraction of Zone Controlled by Reference Point 1
- 377.0; !- Illuminance Setpoint at Reference Point 1 {lux}
-
- Daylighting:ReferencePoint,
- Office2_Mult5_Flr_5_DaylRefPt1, !- Name
- Office2_Mult5_Flr_5, !- Zone Name
- 2.859000, !- X-Coordinate of Reference Point {m}
- 11.430000, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
- Daylighting:Controls,
- Dining_Flr_5_DaylCtrl, !- Name
- Dining_Flr_5, !- Zone Name
- SplitFlux, !- Daylighting Method
- , !- Availability Schedule Name
- Continuousoff, !- Lighting Control Type
- 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control
- 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control
- 3, !- Number of Stepped Control Steps
- 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
- Dining_Flr_5_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name
- 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg}
- 22.0, !- Maximum Allowable Discomfort Glare Index
- , !- DElight Gridding Resolution {m2}
- Dining_Flr_5_DaylRefPt1, !- Daylighting Reference Point 1 Name
- 0.19, !- Fraction of Zone Controlled by Reference Point 1
- 215.0; !- Illuminance Setpoint at Reference Point 1 {lux}
-
- Daylighting:ReferencePoint,
- Dining_Flr_5_DaylRefPt1, !- Name
- Dining_Flr_5, !- Zone Name
- 54.864000, !- X-Coordinate of Reference Point {m}
- 2.859024, !- Y-Coordinate of Reference Point {m}
- 17.835200; !- Z-Coordinate of Reference Point {m}
-
-
-!- =========== ALL OBJECTS IN CLASS: INFILTRATION ===========
-
- ZoneInfiltration:DesignFlowRate,
- Basement_Infiltration, !- Name
- Basement, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ER_Exam1_Mult4_Flr_1_Infiltration, !- Name
- ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ER_Trauma1_Flr_1_Infiltration, !- Name
- ER_Trauma1_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ER_Exam3_Mult4_Flr_1_Infiltration, !- Name
- ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ER_Trauma2_Flr_1_Infiltration, !- Name
- ER_Trauma2_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.224, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ER_Triage_Mult4_Flr_1_Infiltration, !- Name
- ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Office1_Mult4_Flr_1_Infiltration, !- Name
- Office1_Mult4_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Lobby_Records_Flr_1_Infiltration, !- Name
- Lobby_Records_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_Flr_1_Infiltration, !- Name
- Corridor_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ER_NurseStn_Lobby_Flr_1_Infiltration, !- Name
- ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- OR1_Flr_2_Infiltration, !- Name
- OR1_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- OR2_Mult5_Flr_2_Infiltration, !- Name
- OR2_Mult5_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- OR3_Flr_2_Infiltration, !- Name
- OR3_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- OR4_Flr_2_Infiltration, !- Name
- OR4_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- IC_PatRoom1_Mult5_Flr_2_Infiltration, !- Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- IC_PatRoom2_Flr_2_Infiltration, !- Name
- IC_PatRoom2_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- IC_PatRoom3_Mult6_Flr_2_Infiltration, !- Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ICU_Flr_2_Infiltration, !- Name
- ICU_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- ICU_NurseStn_Lobby_Flr_2_Infiltration, !- Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_Flr_2_Infiltration, !- Name
- Corridor_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- OR_NurseStn_Lobby_Flr_2_Infiltration, !- Name
- OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom1_Mult10_Flr_3_Infiltration, !- Name
- PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom2_Flr_3_Infiltration, !- Name
- PatRoom2_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom3_Mult10_Flr_3_Infiltration, !- Name
- PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom4_Flr_3_Infiltration, !- Name
- PatRoom4_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom5_Mult10_Flr_3_Infiltration, !- Name
- PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PhysTherapy_Flr_3_Infiltration, !- Name
- PhysTherapy_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom6_Flr_3_Infiltration, !- Name
- PatRoom6_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom7_Mult10_Flr_3_Infiltration, !- Name
- PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom8_Flr_3_Infiltration, !- Name
- PatRoom8_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- NurseStn_Lobby_Flr_3_Infiltration, !- Name
- NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Lab_Flr_3_Infiltration, !- Name
- Lab_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_SE_Flr_3_Infiltration, !- Name
- Corridor_SE_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_NW_Flr_3_Infiltration, !- Name
- Corridor_NW_Flr_3, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom1_Mult10_Flr_4_Infiltration, !- Name
- PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom2_Flr_4_Infiltration, !- Name
- PatRoom2_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom3_Mult10_Flr_4_Infiltration, !- Name
- PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom4_Flr_4_Infiltration, !- Name
- PatRoom4_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom5_Mult10_Flr_4_Infiltration, !- Name
- PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Radiology_Flr_4_Infiltration, !- Name
- Radiology_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom6_Flr_4_Infiltration, !- Name
- PatRoom6_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom7_Mult10_Flr_4_Infiltration, !- Name
- PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- PatRoom8_Flr_4_Infiltration, !- Name
- PatRoom8_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- NurseStn_Lobby_Flr_4_Infiltration, !- Name
- NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Lab_Flr_4_Infiltration, !- Name
- Lab_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_SE_Flr_4_Infiltration, !- Name
- Corridor_SE_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_NW_Flr_4_Infiltration, !- Name
- Corridor_NW_Flr_4, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Dining_Flr_5_Infiltration, !- Name
- Dining_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000140134848, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- NurseStn_Lobby_Flr_5_Infiltration, !- Name
- NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 5.1718464e-05, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Kitchen_Flr_5_Infiltration, !- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000124488448, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Office1_Flr_5_Infiltration, !- Name
- Office1_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000288235136, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Office2_Mult5_Flr_5_Infiltration, !- Name
- Office2_Mult5_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000181043072, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Office3_Flr_5_Infiltration, !- Name
- Office3_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000288235136, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Office4_Mult6_Flr_5_Infiltration, !- Name
- Office4_Mult6_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 0.000274636992, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
- ZoneInfiltration:DesignFlowRate,
- Corridor_Flr_5_Infiltration, !- Name
- Corridor_Flr_5, !- Zone or ZoneList Name
- INFIL_SCH_PNNL, !- Schedule Name
- Flow/ExteriorArea, !- Design Flow Rate Calculation Method
- , !- Design Flow Rate {m3/s}
- , !- Flow per Zone Floor Area {m3/s-m2}
- 7.6582016e-05, !- Flow per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 0.0000, !- Constant Term Coefficient
- 0.0000, !- Temperature Term Coefficient
- 0.2240, !- Velocity Term Coefficient
- 0.0000; !- Velocity Squared Term Coefficient
-
-!- =========== ALL OBJECTS IN CLASS: SIZING PARAMETERS ===========
-
- Sizing:Parameters,
- 1.0, !- Heating Sizing Factor
- 1.0, !- Cooling Sizing Factor
- 6; !- Timesteps in Averaging Window
-
-!- =========== ALL OBJECTS IN CLASS: ZONE SIZING ===========
-
- Sizing:Zone,
- Basement, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Basement, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Basement, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000368277, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ER_Exam1_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ER_Exam1_Mult4_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ER_Trauma1_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ER_Trauma1_Flr_1,!- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ER_Trauma1_Flr_1,!- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ER_Exam3_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ER_Exam3_Mult4_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ER_Trauma2_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ER_Trauma2_Flr_1,!- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ER_Trauma2_Flr_1,!- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ER_Triage_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ER_Triage_Mult4_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office1_Mult4_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office1_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office1_Mult4_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Lobby_Records_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Lobby_Records_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Lobby_Records_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ER_NurseStn_Lobby_Flr_1, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ER_NurseStn_Lobby_Flr_1, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- OR1_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA OR1_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA OR1_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- OR2_Mult5_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA OR2_Mult5_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA OR2_Mult5_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- OR3_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA OR3_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA OR3_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- OR4_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA OR4_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA OR4_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA IC_PatRoom1_Mult5_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA IC_PatRoom1_Mult5_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- IC_PatRoom2_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA IC_PatRoom2_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA IC_PatRoom2_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA IC_PatRoom3_Mult6_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA IC_PatRoom3_Mult6_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ICU_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ICU_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ICU_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA ICU_NurseStn_Lobby_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA ICU_NurseStn_Lobby_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA OR_NurseStn_Lobby_Flr_2, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA OR_NurseStn_Lobby_Flr_2, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom1_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom1_Mult10_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom2_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom2_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom2_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom3_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom3_Mult10_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom4_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom4_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom4_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom5_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom5_Mult10_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PhysTherapy_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PhysTherapy_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PhysTherapy_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000380976, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom6_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom6_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom6_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom7_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom7_Mult10_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom8_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom8_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom8_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA NurseStn_Lobby_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA NurseStn_Lobby_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Lab_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Lab_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Lab_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.001168327, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_SE_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_SE_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_SE_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_NW_Flr_3, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_NW_Flr_3, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_NW_Flr_3, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom1_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom1_Mult10_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom2_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom2_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom2_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom3_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom3_Mult10_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom4_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom4_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom4_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom5_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom5_Mult10_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Radiology_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Radiology_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Radiology_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000380976,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom6_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom6_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom6_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom7_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom7_Mult10_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- PatRoom8_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA PatRoom8_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA PatRoom8_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA NurseStn_Lobby_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA NurseStn_Lobby_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Lab_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Lab_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Lab_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.001168327, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_SE_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_SE_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_SE_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_NW_Flr_4, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_NW_Flr_4, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_NW_Flr_4, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Dining_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Dining_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Dining_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.001295319, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA NurseStn_Lobby_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA NurseStn_Lobby_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Kitchen_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Kitchen_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDayWithLimit, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 1.88354224873518, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- ; !- Heating Maximum Air Flow Fraction
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Kitchen_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.00202742887606986, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- ; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office1_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office1_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office1_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office2_Mult5_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office2_Mult5_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office2_Mult5_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office3_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office3_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office3_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Office4_Mult6_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Office4_Mult6_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Office4_Mult6_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
- Sizing:Zone,
- Corridor_Flr_5, !- Zone or ZoneList Name
- SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
- 12.8, !- Zone Cooling Design Supply Air Temperature {C}
- , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
- SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
- 40.0, !- Zone Heating Design Supply Air Temperature {C}
- , !- Zone Heating Design Supply Air Temperature Difference {deltaC}
- 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- SZ DSOA Corridor_Flr_5, !- Design Specification Outdoor Air Object Name
- , !- Zone Heating Sizing Factor
- , !- Zone Cooling Sizing Factor
- DesignDay, !- Cooling Design Air Flow Method
- 0.0, !- Cooling Design Air Flow Rate {m3/s}
- , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
- 0.0, !- Cooling Minimum Air Flow {m3/s}
- 0.0, !- Cooling Minimum Air Flow Fraction
- DesignDay, !- Heating Design Air Flow Method
- 0.0, !- Heating Design Air Flow Rate {m3/s}
- , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
- , !- Heating Maximum Air Flow {m3/s}
- , !- Heating Maximum Air Flow Fraction
- VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name
-
- DesignSpecification:OutdoorAir,
- SZ DSOA Corridor_Flr_5, !- Name
- Flow/Area, !- Outdoor Air Method
- , !- Outdoor Air Flow per Person {m3/s-person}
- 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}
- 0.0; !- Outdoor Air Flow per Zone {m3/s}
-
-
- DesignSpecification:ZoneAirDistribution,
- VAV_Zone_AirDistribution, !- Name
- 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless}
- 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless}
- , !- Zone Air Distribution Effectiveness Schedule Name
- , !- Zone Secondary Recirculation Fraction {dimensionless}
- 0.6; !- Minimum Zone Ventilation Efficiency {dimensionless}
-
-
-!- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM ===========
-
-
-
-
-
- Sizing:System,
- VAV_1, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- 4.3265, !- Design Outdoor Air Flow Rate {m3/s}
- 0.3000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8000, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8000, !- Central Cooling Design Supply Air Temperature {C}
- 12.8000, !- Central Heating Design Supply Air Temperature {C}
- Coincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- VAV_ER, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}
- 1.0000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 12.8, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- VAV_OR, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}
- 1.000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 12.8, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- VAV_ICU, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}
- 1.0000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 12.8, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
-
- Sizing:System,
- VAV_PATRMS, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}
- 0.5, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 12.8, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- VAV_2, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- 4.4794, !- Design Outdoor Air Flow Rate {m3/s}
- 0.3000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8000, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8000, !- Central Cooling Design Supply Air Temperature {C}
- 12.8000, !- Central Heating Design Supply Air Temperature {C}
- Coincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-
- Sizing:System,
- VAV_LABS, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}
- 1.0000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 12.8, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
- Sizing:System,
- CAV_KITCHEN, !- AirLoop Name
- Sensible, !- Type of Load to Size On
- AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}
- 1.0000, !- Central Heating Maximum System Air Flow Ratio
- 7.0, !- Preheat Design Temperature {C}
- 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Precool Design Temperature {C}
- 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}
- 12.8, !- Central Cooling Design Supply Air Temperature {C}
- 12.8, !- Central Heating Design Supply Air Temperature {C}
- NonCoincident, !- Type of Zone Sum to Use
- No, !- 100% Outdoor Air in Cooling
- No, !- 100% Outdoor Air in Heating
- 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}
- DesignDay, !- Cooling Supply Air Flow Rate Method
- 0.0, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
- DesignDay, !- Heating Supply Air Flow Rate Method
- 0.0, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
- ZoneSum; !- System Outdoor Air Method
-
-!- =========== ALL OBJECTS IN CLASS: PLANT SIZING ===========
-
- Sizing:Plant,
- SHWSys1, !- Plant or Condenser Loop Name
- Heating, !- Loop Type
- 60, !- Design Loop Exit Temperature {C}
- 5.0; !- Loop Design Temperature Difference {deltaC}
-
- Sizing:Plant,
- HeatSys1, !- Plant or Condenser Loop Name
- Heating, !- Loop Type
- 48.89, !- Design Loop Exit Temperature {C}
- 13.89; !- Loop Design Temperature Difference {deltaC}
-
-
-
- Sizing:Plant,
- CoolSys1_Supply, !- Plant or Condenser Loop Name
- Cooling, !- Loop Type
- 7.22, !- Design Loop Exit Temperature {C}
- 8.33; !- Loop Design Temperature Difference {deltaC}
-
- Sizing:Plant,
- CoolSys1_Demand, !- Plant or Condenser Loop Name
- Cooling, !- Loop Type
- 7.22, !- Design Loop Exit Temperature {C}
- 8.33; !- Loop Design Temperature Difference {deltaC}
-
-!- Design Loop Exit Temperature: Per 90.1-2010 G3.1.3.13, condenser water design supply temperature shall be
-!- 85F or 10F approaching design wet-bulb temperature, whichever is lower, with a design temperature rise of 10F (range temperature).
-!- Loop Design Temperature Difference: Per 90.1-2010 G3.1.3.13, design temperature rise of 10F (range temperature).
-!- Sizing Option: new inputs after V8.3. We choose coincident to be aligned with system sizing. Default (leaving blank) is noncoincident.
-!- Zone Timesteps in Averaging Window: alignment with system inputs for Timesteps in Averaging Window.
-!- Coincident Sizing Factor Mode: GlobalCoolingSizingFactor aligns with the system level sizing parameter inputs.
-
-
- Sizing:Plant,
- TowerWaterSys, !- Plant or Condenser Loop Name
- Condenser, !- Loop Type
- 29.4444444444444, !- Design Loop Exit Temperature {C}
- 5.55555555555556, !- Loop Design Temperature Difference {deltaC}
- Coincident, !- Sizing Option
- 6, !- Zone Timesteps in Averaging Window
- GlobalCoolingSizingFactor; !- Coincident Sizing Factor Mode
-
- Sizing:Plant,
- Heat Recovery Water Loop,!- Plant or Condenser Loop Name
- Heating, !- Loop Type
- 48.89, !- Design Loop Exit Temperature {C}
- 13.89; !- Loop Design Temperature Difference {deltaC}";
-
- Sizing:Plant,
- Heat Recovery Chiller Bypass Loop, !- Plant or Condenser Loop Name
- Cooling, !- Loop Type
- 7.22, !- Design Loop Exit Temperature {C}
- 8.33; !- Loop Design Temperature Difference {deltaC}
-
-
-!- =========== ALL OBJECTS IN CLASS: ZONECONTROL:HUMIDISTAT ===========
-
-
- ZoneControl:Humidistat,
- ER_Exam3_Mult4_Flr_1 Humidistat, !- Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name
-
- MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name
-
- ZoneControl:Humidistat,
- OR2_Mult5_Flr_2 Humidistat, !- Name
- OR2_Mult5_Flr_2, !- Zone Name
- MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name
-
- MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name
-
- ZoneControl:Humidistat,
- ICU_Flr_2 Humidistat, !- Name
- ICU_Flr_2, !- Zone Name
- MinRelHumSetSch_addDI_ICU, !- Humidifying Relative Humidity Setpoint Schedule Name
-
- MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name
-
- ZoneControl:Humidistat,
- Lab_Flr_3 Humidistat, !- Name
- Lab_Flr_3, !- Zone Name
- MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name
-
- MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name
-
- ZoneControl:Humidistat,
- PatRoom5_Mult10_Flr_4 Humidistat, !- Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name
-
- MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name
-
-
-
-!- Set of chiller curves based on Dick Lord's study dated January 17, 2010...
-
-!- Hospital and Large Office have water cooled chillers...Hence set of water cooled chillers to be used in these prototypes...
-!- Large Office will follow 90.1-2010 Path B in the PI case whereas Hospital will follow Path A based on the discussion with the SWG
-
-!- Changed the min. chiller condenser fluid entering temperature to 64 F (17.78 deg C) for water cooled chillers based on Dick's email dated June 4, 2010
-!- and 55 F (12.7 deg C) for air cooled chillers
-!- based on email string and energyplus support clarification dated June 1, 2010...also changed the upper limit for air cooled chillers to 125 F (51.67 deg C)
-!- and the water cooled chillers to 115 F (46.11 deg C) later the same day...
-
-! Temporary changes to address Dick's wrong PLR curves. On Oct. 27, 2010
-! Water cooled chiller PLR curve comes from E+ data library "ReformEIRChiller Carrier 19FA 5651kW/5.50COP/Vanes EIRFPLR"
-! Air-cooled chiller PLR comes from the original curve before addendum M.
-
-
-!- Water cooled chillers: Positive Displacement chillers...
-
-!- 90.1-2004 and 2007 Baseline curves...
-
-Curve:Biquadratic,
- WC_PD_2004_CAPFT, !- Name
- 0.9061150, !- Coefficient1 Constant
- 0.0292277, !- Coefficient2 x
- -0.0003647, !- Coefficient3 x**2
- -0.0009709, !- Coefficient4 y
- -0.0000905, !- Coefficient5 y**2
- 0.0002527, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_PD_2004_EIRFT, !- Name
- 0.3617105, !- Coefficient1 Constant
- -0.0229833, !- Coefficient2 x
- 0.0009519, !- Coefficient3 x**2
- 0.0131889, !- Coefficient4 y
- 0.0003752, !- Coefficient5 y**2
- -0.0007059, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-
-Curve:Bicubic,
- WC_PD_LT75_2004_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
-
-
-Curve:Bicubic,
- WC_PD_75TO150_2004_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_150TO300_2004_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_GT300_2004_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-!- 90.1-2010 Path A curves...
-
-Curve:Biquadratic,
- WC_PD_LT150_2010_PA_CAPFT, !- Name
- 0.9061150, !- Coefficient1 Constant
- 0.0292277, !- Coefficient2 x
- -0.0003647, !- Coefficient3 x**2
- -0.0009709, !- Coefficient4 y
- -0.0000905, !- Coefficient5 y**2
- 0.0002527, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_PD_LT150_2010_PA_EIRFT, !- Name
- 0.3617105, !- Coefficient1 Constant
- -0.0229833, !- Coefficient2 x
- 0.0009519, !- Coefficient3 x**2
- 0.0131889, !- Coefficient4 y
- 0.0003752, !- Coefficient5 y**2
- -0.0007059, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_PD_GT150_2010_PA_CAPFT, !- Name
- 0.9061150, !- Coefficient1 Constant
- 0.0292277, !- Coefficient2 x
- -0.0003647, !- Coefficient3 x**2
- -0.0009709, !- Coefficient4 y
- -0.0000905, !- Coefficient5 y**2
- 0.0002527, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_PD_GT150_2010_PA_EIRFT, !- Name
- 0.3773115, !- Coefficient1 Constant
- -0.0229032, !- Coefficient2 x
- 0.0016504, !- Coefficient3 x**2
- 0.0118156, !- Coefficient4 y
- 0.0004345, !- Coefficient5 y**2
- -0.0010132, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_LT75_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_75TO150_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_150TO300_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_GT300_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-!- 90.1-2010 Path B curves..
-
-Curve:Biquadratic,
- WC_PD_2010_PB_CAPFT, !- Name
- 0.9061171, !- Coefficient1 Constant
- 0.0292267, !- Coefficient2 x
- -0.0003665, !- Coefficient3 x**2
- -0.0009698, !- Coefficient4 y
- -0.0000907, !- Coefficient5 y**2
- 0.0002535, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_PD_2010_PB_EIRFT, !- Name
- 0.3617782, !- Coefficient1 Constant
- -0.0230016, !- Coefficient2 x
- 0.0009672, !- Coefficient3 x**2
- 0.0131801, !- Coefficient4 y
- 0.0003761, !- Coefficient5 y**2
- -0.0007121, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_LT75_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_75TO150_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_150TO300_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_PD_GT300_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
-!- Water cooled chillers: Centrifugal Chillers...
-
-!- 90.1-2004 Baseline curves...
-
-Curve:Biquadratic,
- WC_Cent_LT150_2004_CAPFT, !- Name
- 0.7446451, !- Coefficient1 Constant
- 0.0114858, !- Coefficient2 x
- 0.0000148, !- Coefficient3 x**2
- 0.0224010, !- Coefficient4 y
- -0.0006880, !- Coefficient5 y**2
- 0.0009839, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_Cent_LT150_2004_EIRFT, !- Name
- 0.7728770, !- Coefficient1 Constant
- 0.0221010, !- Coefficient2 x
- -0.0000799, !- Coefficient3 x**2
- -0.0070045, !- Coefficient4 y
- 0.0004763, !- Coefficient5 y**2
- -0.0010612, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_Cent_GT150_2004_CAPFT, !- Name
- 0.7600172, !- Coefficient1 Constant
- 0.0147432, !- Coefficient2 x
- 0.0002144, !- Coefficient3 x**2
- 0.0207218, !- Coefficient4 y
- -0.0006425, !- Coefficient5 y**2
- 0.0008007, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_Cent_GT150_2004_EIRFT, !- Name
- 0.6772577, !- Coefficient1 Constant
- 0.0117857, !- Coefficient2 x
- -0.0001967, !- Coefficient3 x**2
- 0.0014414, !- Coefficient4 y
- 0.0003005, !- Coefficient5 y**2
- -0.0006807, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_Cent_LT150_2004_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_Cent_150TO300_2004_EIRFPLR,!- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
-Curve:Bicubic,
- WC_Cent_GT300_2004_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
- !- 90.1-2010 Path A curves...
-
-Curve:Biquadratic,
- WC_Cent_2010_PA_CAPFT, !- Name
- 0.7600172, !- Coefficient1 Constant
- 0.0147432, !- Coefficient2 x
- 0.0002144, !- Coefficient3 x**2
- 0.0207218, !- Coefficient4 y
- -0.0006425, !- Coefficient5 y**2
- 0.0008007, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_Cent_2010_PA_EIRFT, !- Name
- 0.6772577, !- Coefficient1 Constant
- 0.0117857, !- Coefficient2 x
- -0.0001967, !- Coefficient3 x**2
- 0.0014414, !- Coefficient4 y
- 0.0003005, !- Coefficient5 y**2
- -0.0006807, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-
-Curve:Bicubic,
- WC_Cent_LT150_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_Cent_150TO300_2010_PA_EIRFPLR,!- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_Cent_300TO600_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_Cent_GT600_2010_PA_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-!- 90.1-2010 Path B curves...
-
-Curve:Biquadratic,
- WC_Cent_2010_PB_CAPFT, !- Name
- 0.5362340, !- Coefficient1 Constant
- 0.005581, !- Coefficient2 x
- -0.0013654, !- Coefficient3 x**2
- 0.0488966, !- Coefficient4 y
- -0.0012018, !- Coefficient5 y**2
- 0.0010523, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-Curve:Biquadratic,
- WC_Cent_2010_PB_EIRFT, !- Name
- 1.0821822, !- Coefficient1 Constant
- 0.0042977, !- Coefficient2 x
- -0.0013182, !- Coefficient3 x**2
- -0.0260781, !- Coefficient4 y
- 0.0008256, !- Coefficient5 y**2
- -0.0006013, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 17.78, !- Minimum Value of y
- 46.11; !- Maximum Value of y
-
-
-Curve:Bicubic,
- WC_Cent_LT150_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
-Curve:Bicubic,
- WC_Cent_150TO300_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
-Curve:Bicubic,
- WC_Cent_300TO600_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-Curve:Bicubic,
- WC_Cent_GT600_2010_PB_EIRFPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-!- Air cooled chillers...
-
-!- 90.1-2004 Baseline curves...
-
-Curve:Biquadratic,
- AC_2004_CAPFT, !- Name
- 1.0433811, !- Coefficient1 Constant
- 0.0407077, !- Coefficient2 x
- 0.0004506, !- Coefficient3 x**2
- -0.0041514, !- Coefficient4 y
- -0.0000886, !- Coefficient5 y**2
- -0.0003467, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 12.7, !- Minimum Value of y
- 51.67; !- Maximum Value of y
-
-Curve:Biquadratic,
- AC_2004_EIRFT, !- Name
- 0.5961915, !- Coefficient1 Constant
- -0.0099496, !- Coefficient2 x
- 0.0007888, !- Coefficient3 x**2
- 0.0004506, !- Coefficient4 y
- 0.0004875, !- Coefficient5 y**2
- -0.0007623, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 12.7, !- Minimum Value of y
- 51.67; !- Maximum Value of y
-
-Curve:Quadratic,
- AC_LT150_2004_EIRFPLR, !- Name
- 0.1410, !- Coefficient1 Constant
- 0.6550, !- Coefficient2 x
- 0.2030, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 1.0000; !- Maximum Value of x
-
-Curve:Quadratic,
- AC_GT150_2004_EIRFPLR, !- Name
- 0.1410, !- Coefficient1 Constant
- 0.6550, !- Coefficient2 x
- 0.2030, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 1.0000; !- Maximum Value of x
-
-!- 90.1-2010 Path A curves...
-
-Curve:Biquadratic,
- AC_2010_PA_CAPFT, !- Name
- 1.0433825, !- Coefficient1 Constant
- 0.0407073, !- Coefficient2 x
- 0.0004506, !- Coefficient3 x**2
- -0.0041514, !- Coefficient4 y
- -0.0000886, !- Coefficient5 y**2
- -0.0003467, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 12.7, !- Minimum Value of y
- 51.67; !- Maximum Value of y
-
-Curve:Biquadratic,
- AC_2010_PA_EIRFT, !- Name
- 0.5961907, !- Coefficient1 Constant
- -0.0099493, !- Coefficient2 x
- 0.0007888, !- Coefficient3 x**2
- 0.0004506, !- Coefficient4 y
- 0.0004875, !- Coefficient5 y**2
- -0.0007623, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 12.7, !- Minimum Value of y
- 51.67; !- Maximum Value of y
-
-Curve:Quadratic,
- AC_LT150_2010_PA_EIRFPLR, !- Name
- 0.1410, !- Coefficient1 Constant
- 0.6550, !- Coefficient2 x
- 0.2030, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 1.0000; !- Maximum Value of x
-
-Curve:Quadratic,
- AC_GT150_2010_PA_EIRFPLR, !- Name
- 0.1410, !- Coefficient1 Constant
- 0.6550, !- Coefficient2 x
- 0.2030, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 1.0000; !- Maximum Value of x
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC ===========
-
-!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline *****
-
- Curve:Biquadratic,
- ChillerCentCapFT, !- Name
- 0.7446451, !- Coefficient1 Constant
- 0.0114858, !- Coefficient2 x
- 0.0000148, !- Coefficient3 x**2
- 0.0224010, !- Coefficient4 y
- -0.0006880, !- Coefficient5 y**2
- 0.0009839, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 24.0000, !- Minimum Value of y
- 35.0000; !- Maximum Value of y
-!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline *****
-
- Curve:Biquadratic,
- ChillerCentEIRFT, !- Name
- 0.7728770, !- Coefficient1 Constant
- 0.0221010, !- Coefficient2 x
- -0.0000799, !- Coefficient3 x**2
- -0.0070045, !- Coefficient4 y
- 0.0004763, !- Coefficient5 y**2
- -0.0010612, !- Coefficient6 x*y
- 5.0000, !- Minimum Value of x
- 10.0000, !- Maximum Value of x
- 24.0000, !- Minimum Value of y
- 35.0000; !- Maximum Value of y
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:BICUBIC ===========
-!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline *****
-
- Curve:Bicubic,
- ChillerCentEIRPLR, !- Name
- -1.360532E-01, !- Coefficient1 Constant
- 8.642703E-03, !- Coefficient2 x
- 3.855583E-06, !- Coefficient3 x**2
- 1.024034E+00, !- Coefficient4 y
- 6.047444E-02, !- Coefficient5 y**2
- -8.947860E-03, !- Coefficient6 x*y
- 0.000000E+00, !- Coefficient7 x**3
- 5.706602E-02, !- Coefficient8 y**3
- 0.000000E+00, !- Coefficient9 x**2*y
- 0.000000E+00, !- Coefficient10 x*y**2
- 31.13, !- Minimum Value of x
- 36.52, !- Maximum Value of x
- 0.19, !- Minimum Value of y
- 1.03; !- Maximum Value of y
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC ===========
-
- Curve:Cubic,
- Kitchen_Flr_5_Case:1_WALKINFREEZERSingleShelfHorizontal_LatentEnergyMult, !- Name
- 0.0236, !- Coefficient1 Constant
- 0.0006, !- Coefficient2 x
- 0.0000, !- Coefficient3 x**2
- 0.0000, !- Coefficient4 x**3
- -35.0, !- Minimum Value of x
- 20.0; !- Maximum Value of x
-
- Curve:Cubic,
- Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASEMultiShelfVertical_LatentEnergyMult, !- Name
- 0.026526281, !- Coefficient1 Constant
- 0.001078032, !- Coefficient2 x
- 0.0000602558, !- Coefficient3 x**2
- 0.00000123732, !- Coefficient4 x**3
- -35.0, !- Minimum Value of x
- 20.0; !- Maximum Value of x
-
-!- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC ===========
-
- Curve:Quadratic,
- RACK1_RackCOPfTCurve, !- Name
- 1.7603, !- Coefficient1 Constant
- -0.0377, !- Coefficient2 x
- 0.0004, !- Coefficient3 x**2
- 10.0000, !- Minimum Value of x
- 35.0000; !- Maximum Value of x
-
- Curve:Quadratic,
- RACK1_RackCondFanCurve2, !- Name
- 0.0000, !- Coefficient1 Constant
- 0.0286, !- Coefficient2 x
- 0.0000, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 35.0000; !- Maximum Value of x
-
- Curve:Quadratic,
- RACK2_RackCOPfTCurve, !- Name
- 1.0000, !- Coefficient1 Constant
- 0.0000, !- Coefficient2 x
- 0.0000, !- Coefficient3 x**2
- 0.0000, !- Minimum Value of x
- 50.0000; !- Maximum Value of x
-
-!- =========== ALL OBJECTS IN CLASS: NODELIST ===========
-
- NodeList,
- Basement Inlet Nodes, !- Name
- Basement VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ER_Exam1_Mult4_Flr_1 Inlet Nodes, !- Name
- ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ER_Trauma1_Flr_1 Inlet Nodes, !- Name
- ER_Trauma1_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ER_Exam3_Mult4_Flr_1 Inlet Nodes, !- Name
- ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ER_Trauma2_Flr_1 Inlet Nodes, !- Name
- ER_Trauma2_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ER_Triage_Mult4_Flr_1 Inlet Nodes, !- Name
- ER_Triage_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Office1_Mult4_Flr_1 Inlet Nodes, !- Name
- Office1_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Lobby_Records_Flr_1 Inlet Nodes, !- Name
- Lobby_Records_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_Flr_1 Inlet Nodes, !- Name
- Corridor_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ER_NurseStn_Lobby_Flr_1 Inlet Nodes, !- Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- OR1_Flr_2 Inlet Nodes, !- Name
- OR1_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- OR2_Mult5_Flr_2 Inlet Nodes, !- Name
- OR2_Mult5_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- OR3_Flr_2 Inlet Nodes, !- Name
- OR3_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- OR4_Flr_2 Inlet Nodes, !- Name
- OR4_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- IC_PatRoom1_Mult5_Flr_2 Inlet Nodes, !- Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- IC_PatRoom2_Flr_2 Inlet Nodes, !- Name
- IC_PatRoom2_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- IC_PatRoom3_Mult6_Flr_2 Inlet Nodes, !- Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ICU_Flr_2 Inlet Nodes, !- Name
- ICU_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- ICU_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_Flr_2 Inlet Nodes, !- Name
- Corridor_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- OR_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom1_Mult10_Flr_3 Inlet Nodes, !- Name
- PatRoom1_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom2_Flr_3 Inlet Nodes, !- Name
- PatRoom2_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom3_Mult10_Flr_3 Inlet Nodes, !- Name
- PatRoom3_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom4_Flr_3 Inlet Nodes, !- Name
- PatRoom4_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom5_Mult10_Flr_3 Inlet Nodes, !- Name
- PatRoom5_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PhysTherapy_Flr_3 Inlet Nodes, !- Name
- PhysTherapy_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom6_Flr_3 Inlet Nodes, !- Name
- PatRoom6_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom7_Mult10_Flr_3 Inlet Nodes, !- Name
- PatRoom7_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom8_Flr_3 Inlet Nodes, !- Name
- PatRoom8_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- NurseStn_Lobby_Flr_3 Inlet Nodes, !- Name
- NurseStn_Lobby_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Lab_Flr_3 Inlet Nodes, !- Name
- Lab_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_SE_Flr_3 Inlet Nodes, !- Name
- Corridor_SE_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_NW_Flr_3 Inlet Nodes, !- Name
- Corridor_NW_Flr_3 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom1_Mult10_Flr_4 Inlet Nodes, !- Name
- PatRoom1_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom2_Flr_4 Inlet Nodes, !- Name
- PatRoom2_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom3_Mult10_Flr_4 Inlet Nodes, !- Name
- PatRoom3_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom4_Flr_4 Inlet Nodes, !- Name
- PatRoom4_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom5_Mult10_Flr_4 Inlet Nodes, !- Name
- PatRoom5_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Radiology_Flr_4 Inlet Nodes, !- Name
- Radiology_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom6_Flr_4 Inlet Nodes, !- Name
- PatRoom6_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom7_Mult10_Flr_4 Inlet Nodes, !- Name
- PatRoom7_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- PatRoom8_Flr_4 Inlet Nodes, !- Name
- PatRoom8_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- NurseStn_Lobby_Flr_4 Inlet Nodes, !- Name
- NurseStn_Lobby_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Lab_Flr_4 Inlet Nodes, !- Name
- Lab_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_SE_Flr_4 Inlet Nodes, !- Name
- Corridor_SE_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_NW_Flr_4 Inlet Nodes, !- Name
- Corridor_NW_Flr_4 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Dining_Flr_5 Inlet Nodes,!- Name
- Dining_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
-
- NodeList,
- NurseStn_Lobby_Flr_5 Inlet Nodes, !- Name
- NurseStn_Lobby_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Kitchen_Flr_5 Inlet Nodes, !- Name
- Kitchen_Flr_5 Inlet Node;!- Node 1 Name
-
- NodeList,
- Kitchen_Flr_5 Exhaust Nodes, !- Name
- Kitchen_Flr_5 Exhaust Fan Node; !- Node 1 Name
-
- NodeList,
- Office1_Flr_5 Inlet Nodes, !- Name
- Office1_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Office2_Mult5_Flr_5 Inlet Nodes, !- Name
- Office2_Mult5_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Office3_Flr_5 Inlet Nodes, !- Name
- Office3_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Office4_Mult6_Flr_5 Inlet Nodes, !- Name
- Office4_Mult6_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- Corridor_Flr_5 Inlet Nodes, !- Name
- Corridor_Flr_5 VAV Box Outlet Node; !- Node 1 Name
-
- NodeList,
- VAV_1_OANode List, !- Name
- VAV_1_OAInlet Node; !- Node 1 Name
-
- NodeList,
- VAV_ER_OANode List, !- Name
- VAV_ER_OAInlet Node; !- Node 1 Name
-
- NodeList,
- VAV_OR_OANode List, !- Name
- VAV_OR_OAInlet Node; !- Node 1 Name
-
- NodeList,
- VAV_ICU_OANode List, !- Name
- VAV_ICU_OAInlet Node; !- Node 1 Name
-
- NodeList,
- VAV_PATRMS_OANode List, !- Name
- VAV_PATRMS_OAInlet Node; !- Node 1 Name
-
- NodeList,
- VAV_2_OANode List, !- Name
- VAV_2_OAInlet Node; !- Node 1 Name
-
- NodeList,
- VAV_LABS_OANode List, !- Name
- VAV_LABS_OAInlet Node; !- Node 1 Name
-
- NodeList,
- CAV_KITCHEN_OANode List, !- Name
- CAV_KITCHEN_OAInlet Node;!- Node 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: BRANCHLIST ===========
-
- BranchList,
- VAV_1 Air Loop Branches, !- Name
- VAV_1 Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- VAV_ER Air Loop Branches,!- Name
- VAV_ER Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- VAV_OR Air Loop Branches,!- Name
- VAV_OR Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- VAV_ICU Air Loop Branches, !- Name
- VAV_ICU Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- VAV_PATRMS Air Loop Branches, !- Name
- VAV_PATRMS Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- VAV_2 Air Loop Branches, !- Name
- VAV_2 Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- VAV_LABS Air Loop Branches, !- Name
- VAV_LABS Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- CAV_KITCHEN Air Loop Branches, !- Name
- CAV_KITCHEN Air Loop Main Branch; !- Branch 1 Name
-
- BranchList,
- SHWSys1 Supply Branches, !- Name
- SHWSys1 Supply Inlet Branch, !- Branch 1 Name
- SHWSys1 Supply Equipment Branch, !- Branch 2 Name
- SHWSys1 Supply Equipment Bypass Branch, !- Branch 3 Name
- SHWSys1 Supply Outlet Branch; !- Branch 4 Name
-
- BranchList,
- SHWSys1 Demand Branches, !- Name
- SHWSys1 Demand Inlet Branch, !- Branch 1 Name
- SHWSys1 Demand Load Branch 1, !- Branch 2 Name
- SHWSys1 Demand Load Branch 2, !- Branch 3 Name
- SHWSys1 Demand Load Branch 3, !- Branch 4 Name
- SHWSys1 Demand Load Branch 4, !- Branch 5 Name
- SHWSys1 Demand Load Branch 5, !- Branch 6 Name
- SHWSys1 Demand Load Branch 6, !- Branch 7 Name
- SHWSys1 Demand Load Branch 7, !- Branch 8 Name
- SHWSys1 Demand Load Branch 8, !- Branch 9 Name
- SHWSys1 Demand Load Branch 9, !- Branch 10 Name
- SHWSys1 Demand Load Branch 10, !- Branch 11 Name
- SHWSys1 Demand Load Branch 11, !- Branch 12 Name
- SHWSys1 Demand Load Branch 12, !- Branch 13 Name
- SHWSys1 Demand Load Branch 13, !- Branch 14 Name
- SHWSys1 Demand Load Branch 14, !- Branch 15 Name
- SHWSys1 Demand Load Branch 15, !- Branch 16 Name
- SHWSys1 Demand Load Branch 16, !- Branch 17 Name
- SHWSys1 Demand Load Branch 17, !- Branch 18 Name
- SHWSys1 Demand Load Branch 18, !- Branch 19 Name
- SHWSys1 Demand Load Branch 19, !- Branch 20 Name
- SHWSys1 Demand Load Branch 20, !- Branch 21 Name
- SHWSys1 Demand Load Branch 21, !- Branch 22 Name
- SHWSys1 Demand Load Branch 22, !- Branch 23 Name
- SHWSys1 Demand Load Branch 23, !- Branch 24 Name
- SHWSys1 Demand Load Branch 24, !- Branch 25 Name
- SHWSys1 Demand Load Branch 25, !- Branch 26 Name
- SHWSys1 Demand Load Branch 26, !- Branch 27 Name
- SHWSys1 Demand Load Branch 27, !- Branch 28 Name
- SHWSys1 Demand Load Branch 28, !- Branch 29 Name
- SHWSys1 Demand Load Branch 29, !- Branch 30 Name
- SHWSys1 Demand Load Branch 30, !- Branch 31 Name
- SHWSys1 Demand Bypass Branch, !- Branch 32 Name
- SHWSys1 Demand Outlet Branch; !- Branch 33 Name
-
- BranchList,
- HeatSys1 Supply Branches,!- Name
- HeatSys1 Supply Inlet Branch, !- Branch 1 Name
- HeatSys1 Supply Equipment Branch, !- Branch 2 Name
- HeatSys1 Supply Equipment Bypass Branch, !- Branch 3 Name
- HeatSys1 Supply Outlet Branch; !- Branch 4 Name
-
- BranchList,
- HeatSys1 Demand Branches,!- Name
- HeatSys1 Demand Inlet Branch, !- Branch 1 Name
- HeatSys1 Demand Load Branch 1, !- Branch 2 Name
- HeatSys1 Demand Load Branch 2, !- Branch 3 Name
- HeatSys1 Demand Load Branch 3, !- Branch 4 Name
- HeatSys1 Demand Load Branch 4, !- Branch 5 Name
- HeatSys1 Demand Load Branch 5, !- Branch 6 Name
- HeatSys1 Demand Load Branch 6, !- Branch 7 Name
- HeatSys1 Demand Load Branch 7, !- Branch 8 Name
- HeatSys1 Demand Load Branch 8, !- Branch 9 Name
- HeatSys1 Demand Load Branch 9, !- Branch 10 Name
- HeatSys1 Demand Load Branch 10, !- Branch 11 Name
- HeatSys1 Demand Load Branch 11, !- Branch 12 Name
- HeatSys1 Demand Load Branch 12, !- Branch 13 Name
- HeatSys1 Demand Load Branch 13, !- Branch 14 Name
- HeatSys1 Demand Load Branch 14, !- Branch 15 Name
- HeatSys1 Demand Load Branch 15, !- Branch 16 Name
- HeatSys1 Demand Load Branch 16, !- Branch 17 Name
- HeatSys1 Demand Load Branch 17, !- Branch 18 Name
- HeatSys1 Demand Load Branch 18, !- Branch 19 Name
- HeatSys1 Demand Load Branch 19, !- Branch 20 Name
- HeatSys1 Demand Load Branch 20, !- Branch 21 Name
- HeatSys1 Demand Load Branch 21, !- Branch 22 Name
- HeatSys1 Demand Load Branch 22, !- Branch 23 Name
- HeatSys1 Demand Load Branch 23, !- Branch 24 Name
- HeatSys1 Demand Load Branch 24, !- Branch 25 Name
- HeatSys1 Demand Load Branch 25, !- Branch 26 Name
- HeatSys1 Demand Load Branch 26, !- Branch 27 Name
- HeatSys1 Demand Load Branch 27, !- Branch 28 Name
- HeatSys1 Demand Load Branch 28, !- Branch 29 Name
- HeatSys1 Demand Load Branch 29, !- Branch 30 Name
- HeatSys1 Demand Load Branch 30, !- Branch 31 Name
- HeatSys1 Demand Load Branch 31, !- Branch 32 Name
- HeatSys1 Demand Load Branch 32, !- Branch 33 Name
- HeatSys1 Demand Load Branch 33, !- Branch 34 Name
- HeatSys1 Demand Load Branch 34, !- Branch 35 Name
- HeatSys1 Demand Load Branch 35, !- Branch 36 Name
- HeatSys1 Demand Load Branch 36, !- Branch 37 Name
- HeatSys1 Demand Load Branch 37, !- Branch 38 Name
- HeatSys1 Demand Load Branch 38, !- Branch 39 Name
- HeatSys1 Demand Load Branch 39, !- Branch 40 Name
- HeatSys1 Demand Load Branch 40, !- Branch 41 Name
- HeatSys1 Demand Load Branch 41, !- Branch 42 Name
- HeatSys1 Demand Load Branch 42, !- Branch 43 Name
- HeatSys1 Demand Load Branch 43, !- Branch 44 Name
- HeatSys1 Demand Load Branch 44, !- Branch 45 Name
- HeatSys1 Demand Load Branch 45, !- Branch 46 Name
- HeatSys1 Demand Load Branch 46, !- Branch 47 Name
- HeatSys1 Demand Load Branch 47, !- Branch 48 Name
- HeatSys1 Demand Load Branch 48, !- Branch 49 Name
- HeatSys1 Demand Load Branch 49, !- Branch 50 Name
- HeatSys1 Demand Load Branch 50, !- Branch 51 Name
- HeatSys1 Demand Load Branch 51, !- Branch 52 Name
- HeatSys1 Demand Load Branch 52, !- Branch 53 Name
- HeatSys1 Demand Load Branch 53, !- Branch 54 Name
- HeatSys1 Demand Load Branch 54, !- Branch 55 Name
- HeatSys1 Demand Load Branch 55, !- Branch 56 Name
- HeatSys1 Demand Load Branch 56, !- Branch 57 Name
- HeatSys1 Demand Load Branch 57, !- Branch 58 Name
- HeatSys1 Demand Load Branch 58, !- Branch 59 Name
- HeatSys1 Demand Load Branch 59, !- Branch 60 Name
- HeatSys1 Demand Load Branch 60, !- Branch 61 Name
- HeatSys1 Demand Load Branch 61, !- Branch 62 Name
- HeatSys1 Demand Load Branch 62, !- Branch 63 Name
- HeatSys1 Demand Load Branch 63, !- Branch 64 Name
- HeatSys1 Demand Load Branch 64, !- Branch 65 Name
- HeatSys1 Demand Load Branch 65, !- Branch 66 Name
- HeatSys1 Demand Load Branch 66, !- Branch 67 Name
- HeatSys1 Demand Load Branch 67, !- Branch 68 Name
- HeatSys1 Demand Bypass Branch, !- Branch 69 Name
- HeatSys1 Demand Outlet Branch; !- Branch 70 Name
-
- BranchList,
- CoolSys1 Supply Supply Side Branches,!- Name
- CoolSys1 Supply Inlet Branch, !- Branch 1 Name
- CoolSys1 Supply Equipment Branch 1, !- Branch 2 Name
- CoolSys1 Supply Equipment Branch 2, !- Branch 3 Name
- CoolSys1 Supply Equipment Bypass Branch, !- Branch 4 Name
- CoolSys1 Supply Outlet Branch; !- Branch 5 Name
-
- BranchList,
- CoolSys1 Demand Demand Side Branches,!- Name
- CoolSys1 Demand Inlet Branch, !- Branch 1 Name
- CoolSys1 Demand Load Branch 1, !- Branch 2 Name
- CoolSys1 Demand Load Branch 2, !- Branch 3 Name
- CoolSys1 Demand Load Branch 3, !- Branch 4 Name
- CoolSys1 Demand Load Branch 4, !- Branch 5 Name
- CoolSys1 Demand Load Branch 5, !- Branch 6 Name
- CoolSys1 Demand Load Branch 6, !- Branch 7 Name
- CoolSys1 Demand Load Branch 7, !- Branch 8 Name
- CoolSys1 Demand Load Branch 8, !- Branch 9 Name
- CoolSys1 Demand Outlet Branch; !- Branch 10 Name
-
- BranchList,
- TowerWaterSys Supply Branches, !- Name
- TowerWaterSys Supply Inlet Branch, !- Branch 1 Name
- TowerWaterSys Supply Equipment Branch 1, !- Branch 2 Name
- TowerWaterSys Supply Equipment Branch 2, !- Branch 3 Name
- TowerWaterSys Supply Equipment Bypass Branch, !- Branch 4 Name
- TowerWaterSys Supply Outlet Branch; !- Branch 5 Name
-
- BranchList,
- TowerWaterSys Demand Branches, !- Name
- TowerWaterSys Demand Inlet Branch, !- Branch 1 Name
- TowerWaterSys Demand Load Branch 1, !- Branch 2 Name
- TowerWaterSys Demand Load Branch 2, !- Branch 3 Name
- TowerWaterSys Demand Load Branch 3, !- Branch Name
- TowerWaterSys Demand Bypass Branch, !- Branch 4 Name
- TowerWaterSys Demand Outlet Branch; !- Branch 5 Name
-
- BranchList,
- CoolSys1 Supply Demand Side Branches, !- Name
- CoolSys1 Supply Demand Side Inlet Branch, !- Branch 1 Name
- CoolSys1 Heat Exchanger Supply Branch, !- Branch 2 Name
- CoolSys1 Supply Side Bypass, !- Branch 3 Name
- CoolSys1 Supply Demand Side Outlet Branch; !- Branch 4 Name
-
- BranchList,
- CoolSys1 Demand Supply Side Branches, !- Name
- CoolSys1 Demand Supply Side Inlet Branch, !- Branch 1 Name
- CoolSys1 Heat Exchanger Demand Branch, !- Branch 2 Name
- CoolSys1 Demand Side Bypass, !- Branch 3 Name
- CoolSys1 Demand Supply Side Outlet Branch; !- Branch 4 Name
-
-!- =========== ALL OBJECTS IN CLASS: CONNECTORLIST ===========
-
-ConnectorList,
- Heat Recovery Supply Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- Heat Recovery Supply Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- Heat Recovery Supply Mixer; !- Connector 2 Name
-
-ConnectorList,
- Heat Recovery Demand Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- Heat Recovery Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- Heat Recovery Mixer; !- Connector 2 Name
-
-
-
- ConnectorList,
- SHWSys1 Supply Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- SHWSys1 Supply Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- SHWSys1 Supply Mixer; !- Connector 2 Name
-
- ConnectorList,
- SHWSys1 Demand Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- SHWSys1 Demand Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- SHWSys1 Demand Mixer; !- Connector 2 Name
-
- ConnectorList,
- HeatSys1 Supply Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- HeatSys1 Supply Splitter,!- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- HeatSys1 Supply Mixer; !- Connector 2 Name
-
- ConnectorList,
- HeatSys1 Demand Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- HeatSys1 Demand Splitter,!- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- HeatSys1 Demand Mixer; !- Connector 2 Name
-
- ConnectorList,
- CoolSys1 Supply Supply Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- CoolSys1 Supply Supply Side Splitter,!- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- CoolSys1 Supply Supply Side Mixer; !- Connector 2 Name
-
- ConnectorList,
- CoolSys1 Demand Demand Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- CoolSys1 Demand Demand Side Splitter,!- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- CoolSys1 Demand Demand Side Mixer; !- Connector 2 Name
-
- ConnectorList,
- TowerWaterSys Supply Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- TowerWaterSys Supply Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- TowerWaterSys Supply Mixer; !- Connector 2 Name
-
- ConnectorList,
- TowerWaterSys Demand Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- TowerWaterSys Demand Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- TowerWaterSys Demand Mixer; !- Connector 2 Name
-
- ConnectorList,
- CoolSys1 Supply Demand Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- CoolSys1 Supply Demand Side Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- CoolSys1 Supply Demand Side Mixer; !- Connector 2 Name
-
- ConnectorList,
- CoolSys1 Demand Supply Side Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- CoolSys1 Demand Supply Side Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- CoolSys1 Demand Supply Side Mixer; !- Connector 2 Name
-
-
-!- =========== ALL OBJECTS IN CLASS: BRANCH ===========
-
- Branch,
- VAV_1 Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_1_OA, !- Component 1 Name
- VAV_1 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_1_OA-VAV_1_CoolCNode,!- Component 1 Outlet Node Name
- Coil:Cooling:Water, !- Component 2 Object Type
- VAV_1_CoolC, !- Component 2 Name
- VAV_1_OA-VAV_1_CoolCNode,!- Component 2 Inlet Node Name
- VAV_1_CoolC-VAV_1_HeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Water, !- Component 3 Object Type
- VAV_1_HeatC, !- Component 3 Name
- VAV_1_CoolC-VAV_1_HeatCNode, !- Component 3 Inlet Node Name
- VAV_1_HeatC-VAV_1_FanNode, !- Component 3 Outlet Node Name
- Fan:VariableVolume, !- Component 4 Object Type
- VAV_1_Fan, !- Component 4 Name
- VAV_1_HeatC-VAV_1_FanNode, !- Component 4 Inlet Node Name
- VAV_1 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name
-
- Branch,
- VAV_ER Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_ER_OA, !- Component 1 Name
- VAV_ER Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_ER_OA-VAV_ER HumidifierNode, !- Component 1 Outlet Node Name
- Humidifier:Steam:Electric, !- Component 2 Object Type
- VAV_ER Humidifier, !- Component 2 Name
- VAV_ER_OA-VAV_ER HumidifierNode, !- Component 2 Inlet Node Name
- VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Electric, !- Component 3 Object Type
- VAV_ER_ExtraElecHeatC, !- Component 3 Name
- VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Component 3 Inlet Node Name
- VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name
- Coil:Heating:Water, !- Component 4 Object Type
- VAV_ER_ExtraWaterHeatC, !- Component 4 Name
- VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Component 4 Outlet Node Name
- Coil:Cooling:Water, !- Component 5 Object Type
- VAV_ER_CoolC, !- Component 5 Name
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Component 5 Inlet Node Name
- VAV_ER_CoolC-VAV_ER_HeatCNode, !- Component 5 Outlet Node Name
- Coil:Heating:Water, !- Component 6 Object Type
- VAV_ER_HeatC, !- Component 6 Name
- VAV_ER_CoolC-VAV_ER_HeatCNode, !- Component 6 Inlet Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Component 6 Outlet Node Name
- Fan:VariableVolume, !- Component 7 Object Type
- VAV_ER_Fan, !- Component 7 Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Component 7 Inlet Node Name
- VAV_ER Supply Equipment Outlet Node; !- Component 7 Outlet Node Name
-
- Branch,
- VAV_OR Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_OR_OA, !- Component 1 Name
- VAV_OR Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_OR_OA-VAV_OR HumidifierNode, !- Component 1 Outlet Node Name
- Humidifier:Steam:Electric, !- Component 2 Object Type
- VAV_OR Humidifier, !- Component 2 Name
- VAV_OR_OA-VAV_OR HumidifierNode, !- Component 2 Inlet Node Name
- VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Electric, !- Component 3 Object Type
- VAV_OR_ExtraElecHeatC, !- Component 3 Name
- VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Component 3 Inlet Node Name
- VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name
- Coil:Heating:Water, !- Component 4 Object Type
- VAV_OR_ExtraWaterHeatC, !- Component 4 Name
- VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Component 4 Outlet Node Name
- Coil:Cooling:Water, !- Component 5 Object Type
- VAV_OR_CoolC, !- Component 5 Name
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Component 5 Inlet Node Name
- VAV_OR_CoolC-VAV_OR_HeatCNode, !- Component 5 Outlet Node Name
- Coil:Heating:Water, !- Component 6 Object Type
- VAV_OR_HeatC, !- Component 6 Name
- VAV_OR_CoolC-VAV_OR_HeatCNode, !- Component 6 Inlet Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Component 6 Outlet Node Name
- Fan:VariableVolume, !- Component 7 Object Type
- VAV_OR_Fan, !- Component 7 Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Component 7 Inlet Node Name
- VAV_OR Supply Equipment Outlet Node; !- Component 7 Outlet Node Name
-
- Branch,
- VAV_ICU Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_ICU_OA, !- Component 1 Name
- VAV_ICU Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Component 1 Outlet Node Name
- Humidifier:Steam:Electric, !- Component 2 Object Type
- VAV_ICU Humidifier, !- Component 2 Name
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Component 2 Inlet Node Name
- VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Electric, !- Component 3 Object Type
- VAV_ICU_ExtraElecHeatC, !- Component 3 Name
- VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Component 3 Inlet Node Name
- VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name
- Coil:Heating:Water, !- Component 4 Object Type
- VAV_ICU_ExtraWaterHeatC, !- Component 4 Name
- VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Component 4 Outlet Node Name
- Coil:Cooling:Water, !- Component 5 Object Type
- VAV_ICU_CoolC, !- Component 5 Name
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Component 5 Inlet Node Name
- VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Component 5 Outlet Node Name
- Coil:Heating:Water, !- Component 6 Object Type
- VAV_ICU_HeatC, !- Component 6 Name
- VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Component 6 Inlet Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Component 6 Outlet Node Name
- Fan:VariableVolume, !- Component 7 Object Type
- VAV_ICU_Fan, !- Component 7 Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Component 7 Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node; !- Component 7 Outlet Node Name
-
-
-
- Branch,
- VAV_PATRMS Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_PATRMS_OA, !- Component 1 Name
- VAV_PATRMS Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Component 1 Outlet Node Name
- Humidifier:Steam:Electric, !- Component 2 Object Type
- VAV_PATRMS Humidifier, !- Component 2 Name
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Component 2 Inlet Node Name
- VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Electric, !- Component 3 Object Type
- VAV_PATRMS_ExtraElecHeatC, !- Component 3 Name
- VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Component 3 Inlet Node Name
- VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name
- Coil:Heating:Water, !- Component 4 Object Type
- VAV_PATRMS_ExtraWaterHeatC, !- Component 4 Name
- VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Component 4 Outlet Node Name
- Coil:Cooling:Water, !- Component 5 Object Type
- VAV_PATRMS_CoolC, !- Component 5 Name
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Component 5 Inlet Node Name
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Component 5 Outlet Node Name
- Coil:Heating:Water, !- Component 6 Object Type
- VAV_PATRMS_HeatC, !- Component 6 Name
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Component 6 Inlet Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Component 6 Outlet Node Name
- Fan:VariableVolume, !- Component 7 Object Type
- VAV_PATRMS_Fan, !- Component 7 Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Component 7 Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node; !- Component 7 Outlet Node Name
-
- Branch,
- VAV_2 Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_2_OA, !- Component 1 Name
- VAV_2 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_2_OA-VAV_2_CoolCNode,!- Component 1 Outlet Node Name
- Coil:Cooling:Water, !- Component 2 Object Type
- VAV_2_CoolC, !- Component 2 Name
- VAV_2_OA-VAV_2_CoolCNode,!- Component 2 Inlet Node Name
- VAV_2_CoolC-VAV_2_HeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Water, !- Component 3 Object Type
- VAV_2_HeatC, !- Component 3 Name
- VAV_2_CoolC-VAV_2_HeatCNode, !- Component 3 Inlet Node Name
- VAV_2_HeatC-VAV_2_FanNode, !- Component 3 Outlet Node Name
- Fan:VariableVolume, !- Component 4 Object Type
- VAV_2_Fan, !- Component 4 Name
- VAV_2_HeatC-VAV_2_FanNode, !- Component 4 Inlet Node Name
- VAV_2 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name
-
- Branch,
- VAV_LABS Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- VAV_LABS_OA, !- Component 1 Name
- VAV_LABS Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- VAV_LABS_OA-VAV_LABS HumidifierNode, !- Component 1 Outlet Node Name
- Humidifier:Steam:Electric, !- Component 2 Object Type
- VAV_LABS Humidifier, !- Component 2 Name
- VAV_LABS_OA-VAV_LABS HumidifierNode, !- Component 2 Inlet Node Name
- VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Electric, !- Component 3 Object Type
- VAV_LABS_ExtraElecHeatC, !- Component 3 Name
- VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Component 3 Inlet Node Name
- VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name
- Coil:Heating:Water, !- Component 4 Object Type
- VAV_LABS_ExtraWaterHeatC,!- Component 4 Name
- VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Component 4 Outlet Node Name
- Coil:Cooling:Water, !- Component 5 Object Type
- VAV_LABS_CoolC, !- Component 5 Name
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Component 5 Inlet Node Name
- VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Component 5 Outlet Node Name
- Coil:Heating:Water, !- Component 6 Object Type
- VAV_LABS_HeatC, !- Component 6 Name
- VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Component 6 Inlet Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Component 6 Outlet Node Name
- Fan:VariableVolume, !- Component 7 Object Type
- VAV_LABS_Fan, !- Component 7 Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Component 7 Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node; !- Component 7 Outlet Node Name
-
- Branch,
- CAV_KITCHEN Air Loop Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type
- CAV_KITCHEN_OA, !- Component 1 Name
- CAV_KITCHEN Supply Equipment Inlet Node, !- Component 1 Inlet Node Name
- CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Component 1 Outlet Node Name
- Coil:Cooling:Water, !- Component 2 Object Type
- CAV_KITCHEN_CoolC, !- Component 2 Name
- CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Component 2 Inlet Node Name
- CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Component 2 Outlet Node Name
- Coil:Heating:Water, !- Component 3 Object Type
- CAV_KITCHEN_HeatC, !- Component 3 Name
- CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Component 3 Inlet Node Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Component 3 Outlet Node Name
- Fan:ConstantVolume, !- Component 4 Object Type
- CAV_KITCHEN_Fan, !- Component 4 Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Component 4 Inlet Node Name
- CAV_KITCHEN Supply Equipment Outlet Node; !- Component 4 Outlet Node Name
-
-
-
- Branch,
- SHWSys1 Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:ConstantSpeed, !- Component 1 Object Type
- SHWSys1 Pump, !- Component 1 Name
- SHWSys1 Supply Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector; !- Component 1 Outlet Node Name
-
-
-
- Branch,
- SHWSys1 Supply Equipment Branch, !- Name
- , !- Pressure Drop Curve Name
- WaterHeater:Mixed, !- Component 1 Object Type
- SHWSys1 Water Heater, !- Component 1 Name
- SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Component 1 Inlet Node Name
- SHWSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Supply Equipment Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Supply Equipment Bypass Pipe, !- Component 1 Name
- SHWSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Supply Outlet Pipe, !- Component 1 Name
- SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name
- SHWSys1 Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Demand Inlet Pipe, !- Component 1 Name
- SHWSys1 Demand Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 1, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- ER_Exam1_Mult4_Flr_1 sub cat, !- Component 1 Name
- ER_Exam1_Mult4_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- ER_Exam1_Mult4_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 2, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- ER_Trauma1_Flr_1 sub cat,!- Component 1 Name
- ER_Trauma1_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- ER_Trauma1_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 3, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- ER_Exam3_Mult4_Flr_1 sub cat, !- Component 1 Name
- ER_Exam3_Mult4_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- ER_Exam3_Mult4_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 4, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- ER_Trauma2_Flr_1 sub cat,!- Component 1 Name
- ER_Trauma2_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- ER_Trauma2_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 5, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- ER_Triage_Mult4_Flr_1 sub cat, !- Component 1 Name
- ER_Triage_Mult4_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- ER_Triage_Mult4_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 6, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- OR1_Flr_2 sub cat, !- Component 1 Name
- OR1_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- OR1_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 7, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- OR2_Mult5_Flr_2 sub cat, !- Component 1 Name
- OR2_Mult5_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- OR2_Mult5_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 8, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- OR3_Flr_2 sub cat, !- Component 1 Name
- OR3_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- OR3_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 9, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- OR4_Flr_2 sub cat, !- Component 1 Name
- OR4_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- OR4_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 10, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom1_Mult10_Flr_3 sub cat, !- Component 1 Name
- PatRoom1_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom1_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 11, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom2_Flr_3 sub cat, !- Component 1 Name
- PatRoom2_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom2_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 12, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom3_Mult10_Flr_3 sub cat, !- Component 1 Name
- PatRoom3_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom3_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 13, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom4_Flr_3 sub cat, !- Component 1 Name
- PatRoom4_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom4_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 14, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom5_Mult10_Flr_3 sub cat, !- Component 1 Name
- PatRoom5_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom5_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 15, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PhysTherapy_Flr_3 sub cat, !- Component 1 Name
- PhysTherapy_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PhysTherapy_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 16, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom6_Flr_3 sub cat, !- Component 1 Name
- PatRoom6_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom6_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 17, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom7_Mult10_Flr_3 sub cat, !- Component 1 Name
- PatRoom7_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom7_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 18, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom8_Flr_3 sub cat, !- Component 1 Name
- PatRoom8_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom8_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 19, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- Lab_Flr_3 sub cat, !- Component 1 Name
- Lab_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- Lab_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 20, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom1_Mult10_Flr_4 sub cat, !- Component 1 Name
- PatRoom1_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom1_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 21, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom2_Flr_4 sub cat, !- Component 1 Name
- PatRoom2_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom2_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 22, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom3_Mult10_Flr_4 sub cat, !- Component 1 Name
- PatRoom3_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom3_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 23, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom4_Flr_4 sub cat, !- Component 1 Name
- PatRoom4_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom4_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 24, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom5_Mult10_Flr_4 sub cat, !- Component 1 Name
- PatRoom5_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom5_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 25, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- Radiology_Flr_4 sub cat, !- Component 1 Name
- Radiology_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- Radiology_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 26, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom6_Flr_4 sub cat, !- Component 1 Name
- PatRoom6_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom6_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 27, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom7_Mult10_Flr_4 sub cat, !- Component 1 Name
- PatRoom7_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom7_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 28, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- PatRoom8_Flr_4 sub cat, !- Component 1 Name
- PatRoom8_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- PatRoom8_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 29, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- Lab_Flr_4 sub cat, !- Component 1 Name
- Lab_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- Lab_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Load Branch 30, !- Name
- , !- Pressure Drop Curve Name
- WaterUse:Connections, !- Component 1 Object Type
- Kitchen_Flr_5 sub cat, !- Component 1 Name
- Kitchen_Flr_5 sub cat Water Inlet Node, !- Component 1 Inlet Node Name
- Kitchen_Flr_5 sub cat Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Demand Bypass Pipe, !- Component 1 Name
- SHWSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name
- SHWSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- SHWSys1 Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- SHWSys1 Demand Outlet Pipe, !- Component 1 Name
- SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name
- SHWSys1 Demand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:VariableSpeed, !- Component 1 Object Type
- HeatSys1 Pump, !- Component 1 Name
- HeatSys1 Supply Inlet Node, !- Component 1 Inlet Node Name
- HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Component 1 Outlet Node Name
- WaterHeater:Mixed, !- Component 2 Object Type
- Dummy Water Heater, !- Component 2 Name
- HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Component 2 Inlet Node Name
- Dummy Water Heater Use Side Outlet Node; !- Component 2 Outlet Node Name
-
-
- Branch,
- HeatSys1 Supply Equipment Branch, !- Name
- , !- Pressure Drop Curve Name
- Boiler:HotWater, !- Component 1 Object Type
- HeatSys1 Boiler, !- Component 1 Name
- HeatSys1 Pump-HeatSys1 BoilerNode, !- Component 1 Inlet Node Name
- HeatSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Supply Equipment Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- HeatSys1 Supply Equipment Bypass Pipe, !- Component 1 Name
- HeatSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name
- HeatSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- HeatSys1 Supply Outlet Pipe, !- Component 1 Name
- HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name
- HeatSys1 Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- HeatSys1 Demand Inlet Pipe, !- Component 1 Name
- HeatSys1 Demand Inlet Node, !- Component 1 Inlet Node Name
- HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Basement VAV Box Reheat Coil, !- Component 1 Name
- Basement VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Basement VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 3, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ER_Trauma1_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 4, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 5, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ER_Trauma2_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 6, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ER_Triage_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 7, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Office1_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 8, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Lobby_Records_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 9, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 10, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat Coil, !- Component 1 Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 11, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- OR1_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- OR1_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- OR1_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 12, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- OR2_Mult5_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 13, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- OR3_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- OR3_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- OR3_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 14, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- OR4_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- OR4_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- OR4_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 15, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 16, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- IC_PatRoom2_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 17, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 18, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ICU_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- ICU_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ICU_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 19, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 20, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 21, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Component 1 Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 22, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom1_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 23, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom2_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom2_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom2_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 24, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom3_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 25, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom4_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom4_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom4_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 26, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom5_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 27, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PhysTherapy_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 28, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom6_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom6_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom6_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 29, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom7_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 30, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom8_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom8_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom8_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 31, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- NurseStn_Lobby_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 32, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Lab_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- Lab_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Lab_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 33, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_SE_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 34, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_NW_Flr_3 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 35, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom1_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 36, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom2_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom2_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom2_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 37, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom3_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 38, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom4_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom4_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom4_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 39, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom5_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 40, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Radiology_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- Radiology_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Radiology_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 41, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom6_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom6_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom6_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 42, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom7_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 43, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- PatRoom8_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- PatRoom8_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- PatRoom8_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 44, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- NurseStn_Lobby_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 45, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Lab_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- Lab_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Lab_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 46, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_SE_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 47, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_NW_Flr_4 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 48, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Dining_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- Dining_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Dining_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 49, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- NurseStn_Lobby_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 50, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Office1_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- Office1_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Office1_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 51, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Office2_Mult5_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 52, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Office3_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- Office3_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Office3_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 53, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Office4_Mult6_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 54, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- Corridor_Flr_5 VAV Box Reheat Coil, !- Component 1 Name
- Corridor_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name
- Corridor_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 55, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_1_HeatC, !- Component 1 Name
- VAV_1_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_1_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 56, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_ER_HeatC, !- Component 1 Name
- VAV_ER_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_ER_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 57, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_OR_HeatC, !- Component 1 Name
- VAV_OR_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_OR_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 58, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_ICU_HeatC, !- Component 1 Name
- VAV_ICU_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_ICU_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 59, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_PATRMS_HeatC, !- Component 1 Name
- VAV_PATRMS_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_PATRMS_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 60, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_2_HeatC, !- Component 1 Name
- VAV_2_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_2_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 61, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_LABS_HeatC, !- Component 1 Name
- VAV_LABS_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_LABS_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 62, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- CAV_KITCHEN_HeatC, !- Component 1 Name
- CAV_KITCHEN_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- CAV_KITCHEN_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 63, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_PATRMS_ExtraWaterHeatC, !- Component 1 Name
- VAV_PATRMS_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_PATRMS_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 64, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_ER_ExtraWaterHeatC, !- Component 1 Name
- VAV_ER_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_ER_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 65, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_OR_ExtraWaterHeatC, !- Component 1 Name
- VAV_OR_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_OR_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 66, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_ICU_ExtraWaterHeatC, !- Component 1 Name
- VAV_ICU_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_ICU_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Load Branch 67, !- Name
- , !- Pressure Drop Curve Name
- Coil:Heating:Water, !- Component 1 Object Type
- VAV_LABS_ExtraWaterHeatC,!- Component 1 Name
- VAV_LABS_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_LABS_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- HeatSys1 Demand Bypass Pipe, !- Component 1 Name
- HeatSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name
- HeatSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- HeatSys1 Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- HeatSys1 Demand Outlet Pipe, !- Component 1 Name
- HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name
- HeatSys1 Demand Outlet Node; !- Component 1 Outlet Node Name
-
-
-
- Branch,
- CoolSys1 Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Supply Inlet Pipe, !- Component 1 Name
- CoolSys1 Supply Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Supply Equipment Branch 1, !- Name
- , !- Pressure Drop Curve Name
- Pump:ConstantSpeed, !- Component 1 Object Type
- CoolSys1 Chiller1 Pump, !- Component 1 Name
- CoolSys1 Chiller1 Pump Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Pump-CoolSys1 Chiller1Node, !- Component 1 Outlet Node Name
- Chiller:Electric:ReformulatedEIR, !- Component 2 Object Type
- CoolSys1 Chiller1, !- Component 2 Name
- CoolSys1 Pump-CoolSys1 Chiller1Node, !- Component 2 Inlet Node Name
- CoolSys1 Supply Equipment Outlet Node 1; !- Component 2 Outlet Node Name
-
- Branch,
- CoolSys1 Supply Equipment Branch 2, !- Name
- , !- Pressure Drop Curve Name
- Pump:ConstantSpeed, !- Component 1 Object Type
- CoolSys1 Chiller2 Pump, !- Component 1 Name
- CoolSys1 Chiller2 Pump Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Pump-CoolSys1 Chiller2Node, !- Component 1 Outlet Node Name
- Chiller:Electric:ReformulatedEIR, !- Component 2 Object Type
- CoolSys1 Chiller2, !- Component 2 Name
- CoolSys1 Pump-CoolSys1 Chiller2Node, !- Component 2 Inlet Node Name
- CoolSys1 Supply Equipment Outlet Node 2; !- Component 2 Outlet Node Name
-
-
- Branch,
- CoolSys1 Supply Equipment Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Supply Equipment Bypass Pipe, !- Component 1 Name
- CoolSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Supply Outlet Pipe, !- Component 1 Name
- CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name
- CoolSys1 Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:VariableSpeed, !- Component 1 Object Type
- CoolSys1 Pump Secondary, !- Component 1 Name
- CoolSys1 Demand Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Pump Secondary-CoolSys1 Demand Mixer; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 1, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_1_CoolC, !- Component 1 Name
- VAV_1_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_1_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 2, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_ER_CoolC, !- Component 1 Name
- VAV_ER_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_ER_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 3, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_OR_CoolC, !- Component 1 Name
- VAV_OR_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_OR_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 4, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_ICU_CoolC, !- Component 1 Name
- VAV_ICU_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_ICU_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 5, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_PATRMS_CoolC, !- Component 1 Name
- VAV_PATRMS_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_PATRMS_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 6, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_2_CoolC, !- Component 1 Name
- VAV_2_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_2_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 7, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- VAV_LABS_CoolC, !- Component 1 Name
- VAV_LABS_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- VAV_LABS_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Load Branch 8, !- Name
- , !- Pressure Drop Curve Name
- Coil:Cooling:Water, !- Component 1 Object Type
- CAV_KITCHEN_CoolC, !- Component 1 Name
- CAV_KITCHEN_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name
- CAV_KITCHEN_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name
-
-
- Branch,
- CoolSys1 Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Demand Outlet Pipe, !- Component 1 Name
- CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name
- CoolSys1 Demand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- HeaderedPumps:VariableSpeed, !- Component 1 Object Type
- TowerWaterSys Pump, !- Component 1 Name
- TowerWaterSys Supply Inlet Node, !- Component 1 Inlet Node Name
- TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Supply Equipment Branch 1, !- Name
- , !- Pressure Drop Curve Name
- CoolingTower:VariableSpeed, !- Component 1 Object Type
- TowerWaterSys CoolTower 1, !- Component 1 Name
- TowerWaterSys Pump-TowerWaterSys CoolTower1Node, !- Component 1 Inlet Node Name
- TowerWaterSys Supply Equipment Outlet Node 1; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Supply Equipment Branch 2, !- Name
- , !- Pressure Drop Curve Name
- CoolingTower:VariableSpeed, !- Component 1 Object Type
- TowerWaterSys CoolTower 2, !- Component 1 Name
- TowerWaterSys Pump-TowerWaterSys CoolTower2Node, !- Component 1 Inlet Node Name
- TowerWaterSys Supply Equipment Outlet Node 2; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Supply Equipment Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- TowerWaterSys Supply Equipment Bypass Pipe, !- Component 1 Name
- TowerWaterSys Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name
- TowerWaterSys Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- TowerWaterSys Supply Outlet Pipe, !- Component 1 Name
- TowerWaterSys Supply Mixer-TowerWaterSys Supply Outlet Pipe, !- Component 1 Inlet Node Name
- TowerWaterSys Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- TowerWaterSys Demand Inlet Pipe, !- Component 1 Name
- TowerWaterSys Demand Inlet Node, !- Component 1 Inlet Node Name
- TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Demand Load Branch 1, !- Name
- , !- Pressure Drop Curve Name
- Chiller:Electric:ReformulatedEIR, !- Component 1 Object Type
- CoolSys1 Chiller1, !- Component 1 Name
- CoolSys1 Chiller1 Water Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Chiller1 Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Demand Load Branch 2, !- Name
- , !- Pressure Drop Curve Name
- Chiller:Electric:ReformulatedEIR, !- Component 1 Object Type
- CoolSys1 Chiller2, !- Component 1 Name
- CoolSys1 Chiller2 Water Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Chiller2 Water Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Demand Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- TowerWaterSys Demand Bypass Pipe, !- Component 1 Name
- TowerWaterSys Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name
- TowerWaterSys Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- TowerWaterSys Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- TowerWaterSys Demand Outlet Pipe, !- Component 1 Name
- TowerWaterSys Demand Mixer-TowerWaterSys Demand Outlet Pipe, !- Component 1 Inlet Node Name
- TowerWaterSys Demand Outlet Node; !- Component 1 Outlet Node Name
-
-
- Branch,
- CoolSys1 Heat Exchanger Supply Branch, !- Name
- , !- Pressure Drop Curve Name
- HeatExchanger:FluidToFluid, !- Component 1 Object Type
- Bypass Heat Exchanger , !- Component 1 Name
- CoolSys1 Exchanger Supply Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Exchanger Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Heat Exchanger Demand Branch, !- Name
- , !- Pressure Drop Curve Name
- HeatExchanger:FluidToFluid, !- Component 1 Object Type
- Bypass Heat Exchanger , !- Component 1 Name
- CoolSys1 Exchanger Demand Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Exchanger Demand Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Supply Side Bypass, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Supply Bypass, !- Component 1 Name
- CoolSys1 Supply Bypass Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Supply Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Side Bypass, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Demand Bypass, !- Component 1 Name
- CoolSys1 Demand Bypass Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Demand Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Supply Demand Side Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Supply Demand Side Inlet Pipe, !- Component 1 Name
- CoolSys1 Supply Demand Side Inlet Pipe Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Supply Demand Side Inlet Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Supply Demand Side Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Supply Demand Side Outlet Pipe , !- Component 1 Name
- CoolSys1 Supply Demand Side Outlet Pipe Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Supply Demand Side Outlet Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- CoolSys1 Demand Supply Side Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Demand Supply Side Inlet Pipe , !- Component 1 Name
- CoolSys1 Demand Supply Side Inlet Pipe Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Demand Supply Side Inlet Pipe Outlet Node, !- Component 1 Outlet Node Name
- HeatExchanger:FluidToFluid, !- Component 2 Object Type
- Heat Recovery Chiller Bypass Heat Exchanger, !- Component 2 Name
- CoolSys1 Demand Supply Side Inlet Pipe Outlet Node, !- Component 2 Inlet Node Name
- Heat Recovery Chiller Bypass Heat Exchanger Outlet; !- Component 2 Outlet Node Name
-
-
-
- Branch,
- CoolSys1 Demand Supply Side Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- CoolSys1 Demand Supply Side Outlet Pipe , !- Component 1 Name
- CoolSys1 Demand Supply Side Outlet Pipe Inlet Node, !- Component 1 Inlet Node Name
- CoolSys1 Demand Supply Side Outlet Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- BranchList,
- Heat Recovery Chiller Bypass Loop Supply Side Branches, !- Name
- Heat Recovery Chiller Bypass Loop Supply Inlet Branch, !- Branch 1 Name
- Heat Recovery Chiller Bypass Loop Supply Equipment Branch, !- Branch 2 Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Branch; !- Branch 3 Name
-
- BranchList,
- Heat Recovery Chiller Bypass Loop Demand Side Branches, !- Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Branch, !- Branch 1 Name
- Heat Recovery Chiller Bypass Loop Demand Load Branch, !- Branch 2 Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Branch; !- Branch 3 Name
-
- Branch,
- Heat Recovery Chiller Bypass Loop Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:VariableSpeed, !- Component 1 Object Type
- Heat Recovery Chiller Bypass Loop Pump, !- Component 1 Name
- Heat Recovery Chiller Bypass Loop Pump Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Bypass Loop Pump Outlet; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Chiller Bypass Loop Supply Equipment Branch, !- Name
- , !- Pressure Drop Curve Name
- Chiller:Electric:EIR, !- Component 1 Object Type
- Heat Recovery Chiller, !- Component 1 Name
- Heat Recovery Chiller Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Outlet; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Chiller Bypass Loop Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe, !- Component 1 Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Outlet; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Chiller Bypass Loop Demand Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe, !- Component 1 Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Outlet; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Chiller Bypass Loop Demand Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe, !- Component 1 Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Outlet; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Chiller Bypass Loop Demand Load Branch, !- Name
- , !- Pressure Drop Curve Name
- HeatExchanger:FluidToFluid, !- Component 1 Object Type
- Heat Recovery Chiller Bypass Heat Exchanger, !- Component 1 Name
- Heat Recovery Chiller Bypass Heat Exchanger Demand Side Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Bypass Heat Exchanger Demand Side Outlet; !- Component 1 Outlet Node Name
-
- BranchList,
- Heat Recovery Supply Side Branches, !- Name
- Heat Recovery Supply Inlet Branch, !- Branch 1 Name
- Dummy Water Heater Branch, !- Branch 2 Name
- Heat Recovery Supply Outlet Branch; !- Branch 3 Name
-
- BranchList,
- Heat Recovery Demand Side Branches, !- Name
- Heat Recovery Inlet Branch, !- Branch 1 Name
- Heat Recovery Chiller HR Branch, !- Branch 2 Name
- Heat Recovery Bypass Branch, !- Branch 3 Name
- Heat Recovery Outlet Branch; !- Branch 4 Name
-
- Branch,
- TowerWaterSys Demand Load Branch 3, !- Name
- , !- Pressure Drop Curve Name
- Chiller:Electric:EIR, !- Component 1 Object Type
- Heat Recovery Chiller, !- Component 1 Name
- Heat Recovery Chiller Condenser Inlet, !- Component 1 Inlet Node Name
- Heat Recovery Chiller Condenser Outlet; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Supply Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pump:VariableSpeed, !- Component 1 Object Type
- Heat Recovery Circ Pump, !- Component 1 Name
- Heat Recovery Supply Inlet Node, !- Component 1 Inlet Node Name
- Heat Recovery Pump Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Dummy Water Heater Branch, !- Name
- , !- Pressure Drop Curve Name
- WaterHeater:Mixed, !- Component 1 Object Type
- Dummy Water Heater, !- Component 1 Name
- Dummy Water Heater Source Side Inlet Node, !- Component 1 Inlet Node Name
- Dummy Water Heater Source Side Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Supply Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Supply Outlet, !- Component 1 Name
- Heat Recovery Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name
- Heat Recovery Supply Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Inlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Inlet Pipe,!- Component 1 Name
- Heat Recovery Demand Inlet Node, !- Component 1 Inlet Node Name
- Heat Recovery Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Chiller HR Branch, !- Name
- , !- Pressure Drop Curve Name
- Chiller:Electric:EIR, !- Component 1 Object Type
- Heat Recovery Chiller, !- Component 1 Name
- Heat Recovery Chiller HR Inlet Node,!- Component 1 Inlet Node Name
- Heat Recovery Chiller HR Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Bypass Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Bypass, !- Component 1 Name
- Heat Recovery Bypass Inlet Node, !- Component 1 Inlet Node Name
- Heat Recovery Bypass Outlet Node; !- Component 1 Outlet Node Name
-
- Branch,
- Heat Recovery Outlet Branch, !- Name
- , !- Pressure Drop Curve Name
- Pipe:Adiabatic, !- Component 1 Object Type
- Heat Recovery Outlet Pipe, !- Component 1 Name
- Heat Recovery Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name
- Heat Recovery Demand Outlet Node; !- Component 1 Outlet Node Name
-
- Connector:Splitter,
- Heat Recovery Chiller Bypass Loop Supply Splitter, !- Name
- Heat Recovery Chiller Bypass Loop Supply Inlet Branch, !- Inlet Branch Name
- Heat Recovery Chiller Bypass Loop Supply Equipment Branch; !- Outlet Branch 1 Name
-
- Connector:Splitter,
- Heat Recovery Chiller Bypass Loop Demand Splitter, !- Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Branch, !- Inlet Branch Name
- Heat Recovery Chiller Bypass Loop Demand Load Branch; !- Outlet Branch 1 Name
-
- Connector:Mixer,
- Heat Recovery Chiller Bypass Loop Supply Mixer, !- Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Branch, !- Outlet Branch Name
- Heat Recovery Chiller Bypass Loop Supply Equipment Branch; !- Inlet Branch 1 Name
-
- Connector:Mixer,
- Heat Recovery Chiller Bypass Loop Demand Mixer, !- Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Branch, !- Outlet Branch Name
- Heat Recovery Chiller Bypass Loop Demand Load Branch; !- Inlet Branch 1 Name
-
- ConnectorList,
- Heat Recovery Chiller Bypass Loop Supply Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- Heat Recovery Chiller Bypass Loop Supply Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- Heat Recovery Chiller Bypass Loop Supply Mixer; !- Connector 2 Name
-
- ConnectorList,
- Heat Recovery Chiller Bypass Loop Demand Connectors, !- Name
- Connector:Splitter, !- Connector 1 Object Type
- Heat Recovery Chiller Bypass Loop Demand Splitter, !- Connector 1 Name
- Connector:Mixer, !- Connector 2 Object Type
- Heat Recovery Chiller Bypass Loop Demand Mixer; !- Connector 2 Name
-
-
-
-!- =========== ALL OBJECTS IN CLASS: PIPE ===========
-
- Pipe:Adiabatic,
- SHWSys1 Supply Equipment Bypass Pipe, !- Name
- SHWSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name
- SHWSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Supply Outlet Pipe, !- Name
- SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Inlet Node Name
- SHWSys1 Supply Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Demand Inlet Pipe, !- Name
- SHWSys1 Demand Inlet Node, !- Inlet Node Name
- SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Demand Bypass Pipe, !- Name
- SHWSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name
- SHWSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- SHWSys1 Demand Outlet Pipe, !- Name
- SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Inlet Node Name
- SHWSys1 Demand Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- HeatSys1 Supply Equipment Bypass Pipe, !- Name
- HeatSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name
- HeatSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- HeatSys1 Supply Outlet Pipe, !- Name
- HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Inlet Node Name
- HeatSys1 Supply Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- HeatSys1 Demand Inlet Pipe, !- Name
- HeatSys1 Demand Inlet Node, !- Inlet Node Name
- HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- Outlet Node Name
-
- Pipe:Adiabatic,
- HeatSys1 Demand Bypass Pipe, !- Name
- HeatSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name
- HeatSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- HeatSys1 Demand Outlet Pipe, !- Name
- HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Inlet Node Name
- HeatSys1 Demand Outlet Node; !- Outlet Node Name
-
-
-
- Pipe:Adiabatic,
- CoolSys1 Supply Inlet Pipe, !- Name
- CoolSys1 Supply Inlet Node, !- Inlet Node Name
- CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector; !- Outlet Node Name
-
-
- Pipe:Adiabatic,
- CoolSys1 Supply Equipment Bypass Pipe, !- Name
- CoolSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name
- CoolSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- CoolSys1 Supply Outlet Pipe, !- Name
- CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Inlet Node Name
- CoolSys1 Supply Outlet Node; !- Outlet Node Name
-
-
-
- Pipe:Adiabatic,
- CoolSys1 Demand Outlet Pipe, !- Name
- CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Inlet Node Name
- CoolSys1 Demand Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- TowerWaterSys Supply Equipment Bypass Pipe, !- Name
- TowerWaterSys Supply Equip Bypass Inlet Node, !- Inlet Node Name
- TowerWaterSys Supply Equip Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- TowerWaterSys Supply Outlet Pipe, !- Name
- TowerWaterSys Supply Mixer-TowerWaterSys Supply Outlet Pipe, !- Inlet Node Name
- TowerWaterSys Supply Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- TowerWaterSys Demand Inlet Pipe, !- Name
- TowerWaterSys Demand Inlet Node, !- Inlet Node Name
- TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer; !- Outlet Node Name
-
- Pipe:Adiabatic,
- TowerWaterSys Demand Bypass Pipe, !- Name
- TowerWaterSys Demand Bypass Pipe Inlet Node, !- Inlet Node Name
- TowerWaterSys Demand Bypass Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- TowerWaterSys Demand Outlet Pipe, !- Name
- TowerWaterSys Demand Mixer-TowerWaterSys Demand Outlet Pipe, !- Inlet Node Name
- TowerWaterSys Demand Outlet Node; !- Outlet Node Name
-
-
- Pipe:Adiabatic,
- CoolSys1 Supply Bypass, !- Name
- CoolSys1 Supply Bypass Inlet Node, !- Inlet Node Name
- CoolSys1 Supply Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- CoolSys1 Demand Bypass, !- Name
- CoolSys1 Demand Bypass Inlet Node, !- Inlet Node Name
- CoolSys1 Demand Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- CoolSys1 Supply Demand Side Inlet Pipe, !- Name
- CoolSys1 Supply Demand Side Inlet Pipe Inlet Node, !- Inlet Node Name
- CoolSys1 Supply Demand Side Inlet Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- CoolSys1 Supply Demand Side Outlet Pipe , !- Name
- CoolSys1 Supply Demand Side Outlet Pipe Inlet Node, !- Inlet Node Name
- CoolSys1 Supply Demand Side Outlet Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- CoolSys1 Demand Supply Side Outlet Pipe , !- Name
- CoolSys1 Demand Supply Side Outlet Pipe Inlet Node, !- Inlet Node Name
- CoolSys1 Demand Supply Side Outlet Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- CoolSys1 Demand Supply Side Inlet Pipe , !- Name
- CoolSys1 Demand Supply Side Inlet Pipe Inlet Node, !- Inlet Node Name
- CoolSys1 Demand Supply Side Inlet Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Supply Outlet, !- Name
- Heat Recovery Supply Exit Pipe Inlet Node, !- Inlet Node Name
- Heat Recovery Supply Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Inlet Pipe,!- Name
- Heat Recovery Demand Inlet Node, !- Inlet Node Name
- Heat Recovery Demand Entrance Pipe Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Bypass, !- Name
- Heat Recovery Bypass Inlet Node, !- Inlet Node Name
- Heat Recovery Bypass Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Outlet Pipe, !- Name
- Heat Recovery Demand Exit Pipe Inlet Node, !- Inlet Node Name
- Heat Recovery Demand Outlet Node; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe, !- Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Inlet, !- Inlet Node Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Outlet; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe, !- Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Inlet, !- Inlet Node Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Outlet; !- Outlet Node Name
-
- Pipe:Adiabatic,
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe, !- Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Inlet, !- Inlet Node Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Outlet; !- Outlet Node Name
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: PLANT LOOP ===========
-
- PlantLoop,
- SHWSys1, !- Name
- WATER, !- Fluid Type
- , !- User Defined Fluid Type
- SHWSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name
- SHWSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name
- 60.0, !- Maximum Loop Temperature {C}
- 10.0, !- Minimum Loop Temperature {C}
- AUTOSIZE, !- Maximum Loop Flow Rate {m3/s}
- 0.0, !- Minimum Loop Flow Rate {m3/s}
- AUTOSIZE, !- Plant Loop Volume {m3}
- SHWSys1 Supply Inlet Node, !- Plant Side Inlet Node Name
- SHWSys1 Supply Outlet Node, !- Plant Side Outlet Node Name
- SHWSys1 Supply Branches, !- Plant Side Branch List Name
- SHWSys1 Supply Connectors, !- Plant Side Connector List Name
- SHWSys1 Demand Inlet Node, !- Demand Side Inlet Node Name
- SHWSys1 Demand Outlet Node, !- Demand Side Outlet Node Name
- SHWSys1 Demand Branches, !- Demand Side Branch List Name
- SHWSys1 Demand Connectors, !- Demand Side Connector List Name
- Optimal; !- Load Distribution Scheme
-
- PlantLoop,
- HeatSys1, !- Name
- WATER, !- Fluid Type
- , !- User Defined Fluid Type
- HeatSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name
- HeatSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name
- 100.0, !- Maximum Loop Temperature {C}
- 10.0, !- Minimum Loop Temperature {C}
- AUTOSIZE, !- Maximum Loop Flow Rate {m3/s}
- 0.0, !- Minimum Loop Flow Rate {m3/s}
- AUTOSIZE, !- Plant Loop Volume {m3}
- HeatSys1 Supply Inlet Node, !- Plant Side Inlet Node Name
- HeatSys1 Supply Outlet Node, !- Plant Side Outlet Node Name
- HeatSys1 Supply Branches,!- Plant Side Branch List Name
- HeatSys1 Supply Connectors, !- Plant Side Connector List Name
- HeatSys1 Demand Inlet Node, !- Demand Side Inlet Node Name
- HeatSys1 Demand Outlet Node, !- Demand Side Outlet Node Name
- HeatSys1 Demand Branches,!- Demand Side Branch List Name
- HeatSys1 Demand Connectors, !- Demand Side Connector List Name
- Optimal; !- Load Distribution Scheme
-
- PlantLoop,
- CoolSys1_Supply, !- Name
- WATER, !- Fluid Type
- , !- User Defined Fluid Type
- CoolSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name
- CoolSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name
- 98.0, !- Maximum Loop Temperature {C}
- 1.0, !- Minimum Loop Temperature {C}
- AUTOSIZE, !- Maximum Loop Flow Rate {m3/s}
- 0.0, !- Minimum Loop Flow Rate {m3/s}
- autocalculate, !- Plant Loop Volume {m3}
- CoolSys1 Supply Inlet Node, !- Plant Side Inlet Node Name
- CoolSys1 Supply Outlet Node, !- Plant Side Outlet Node Name
- CoolSys1 Supply Supply Side Branches, !- Plant Side Branch List Name
- CoolSys1 Supply Supply Side Connectors, !- Plant Side Connector List Name
- CoolSys1 Supply Demand Side Inlet Pipe Inlet Node, !- Demand Side Inlet Node Name
- CoolSys1 Supply Demand Side Outlet Pipe Outlet Node, !- Demand Side Outlet Node Name
- CoolSys1 Supply Demand Side Branches, !- Demand Side Branch List Name
- CoolSys1 Supply Demand Side Connectors, !- Demand Side Connector List Name
- UniformLoad; !- Load Distribution Scheme
-
- PlantLoop,
- CoolSys1_Demand, !- Name
- Water, !- Fluid Type
- , !- User Defined Fluid Type
- CoolSys1 Sec Loop Operation, !- Plant Equipment Operation Scheme Name
- CoolSys1 Demand Inlet Node, !- Loop Temperature Setpoint Node Name
- 98, !- Maximum Loop Temperature {C}
- 1, !- Minimum Loop Temperature {C}
- autosize, !- Maximum Loop Flow Rate {m3/s}
- 0, !- Minimum Loop Flow Rate {m3/s}
- autocalculate, !- Plant Loop Volume {m3}
- CoolSys1 Demand Supply Side Inlet Pipe Inlet Node, !- Plant Side Inlet Node Name
- CoolSys1 Demand Supply Side Outlet Pipe Outlet Node, !- Plant Side Outlet Node Name
- CoolSys1 Demand Supply Side Branches, !- Plant Side Branch List Name
- CoolSys1 Demand Supply Side Connectors, !- Plant Side Connector List Name
- CoolSys1 Demand Inlet Node, !- Demand Side Inlet Node Name
- CoolSys1 Demand Outlet Node, !- Demand Side Outlet Node Name
- CoolSys1 Demand Demand Side Branches, !- Demand Side Branch List Name
- CoolSys1 Demand Demand Side Connectors, !- Demand Side Connector List Name
- UniformLoad; !- Load Distribution Scheme
-
- PlantLoop,
- Heat Recovery Water Loop,!- Name
- Water, !- Fluid Type
- , !- User Defined Fluid Type
- Heat Recovery Loop Operation, !- Plant Equipment Operation Scheme Name
- Heat Recovery Supply Outlet Node, !- Loop Temperature Setpoint Node Name
- 50, !- Maximum Loop Temperature {C}
- 10, !- Minimum Loop Temperature {C}
- autosize, !- Maximum Loop Flow Rate {m3/s}
- 0, !- Minimum Loop Flow Rate {m3/s}
- autocalculate, !- Plant Loop Volume {m3}
- Heat Recovery Supply Inlet Node, !- Plant Side Inlet Node Name
- Heat Recovery Supply Outlet Node, !- Plant Side Outlet Node Name
- Heat Recovery Supply Side Branches, !- Plant Side Branch List Name
- Heat Recovery Supply Side Connectors, !- Plant Side Connector List Name
- Heat Recovery Demand Inlet Node, !- Demand Side Inlet Node Name
- Heat Recovery Demand Outlet Node, !- Demand Side Outlet Node Name
- Heat Recovery Demand Side Branches, !- Demand Side Branch List Name
- Heat Recovery Demand Side Connectors, !- Demand Side Connector List Name
- Optimal; !- Load Distribution Scheme
-
-PlantLoop,
- Heat Recovery Chiller Bypass Loop, !- Name
- Water, !- Fluid Type
- , !- User Defined Fluid Type
- Heat Recovery Chiller Bypass Loop Operation, !- Plant Equipment Operation Scheme Name
- Heat Recovery Chiller Outlet, !- Loop Temperature Setpoint Node Name
- 50, !- Maximum Loop Temperature {C}
- 1, !- Minimum Loop Temperature {C}
- autosize, !- Maximum Loop Flow Rate {m3/s}
- 0, !- Minimum Loop Flow Rate {m3/s}
- autocalculate, !- Plant Loop Volume {m3}
- Heat Recovery Chiller Bypass Loop Pump Inlet, !- Plant Side Inlet Node Name
- Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Outlet, !- Plant Side Outlet Node Name
- Heat Recovery Chiller Bypass Loop Supply Side Branches, !- Plant Side Branch List Name
- Heat Recovery Chiller Bypass Loop Supply Connectors, !- Plant Side Connector List Name
- Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Inlet, !- Demand Side Inlet Node Name
- Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Outlet, !- Demand Side Outlet Node Name
- Heat Recovery Chiller Bypass Loop Demand Side Branches, !- Demand Side Branch List Name
- Heat Recovery Chiller Bypass Loop Demand Connectors, !- Demand Side Connector List Name
- Optimal; !- Load Distribution Scheme
-
-
-
-!- =========== ALL OBJECTS IN CLASS: CONDENSER LOOP ===========
-!- Minimum and maximum Loop Temperatures are relaxed and not used to set the control or sizing limits.
-
- CondenserLoop,
- TowerWaterSys, !- Name
- Water, !- Fluid Type
- , !- User Defined Fluid Type
- TowerWaterSys Loop Operation Scheme List, !- Condenser Equipment Operation Scheme Name
- TowerWaterSys Supply Outlet Node, !- Condenser Loop Temperature Setpoint Node Name
- 80.0, !- Maximum Loop Temperature {C}
- 5.0, !- Minimum Loop Temperature {C}
- AUTOSIZE, !- Maximum Loop Flow Rate {m3/s}
- 0.0, !- Minimum Loop Flow Rate {m3/s}
- AUTOSIZE, !- Condenser Loop Volume {m3}
- TowerWaterSys Supply Inlet Node, !- Condenser Side Inlet Node Name
- TowerWaterSys Supply Outlet Node, !- Condenser Side Outlet Node Name
- TowerWaterSys Supply Branches, !- Condenser Side Branch List Name
- TowerWaterSys Supply Connectors, !- Condenser Side Connector List Name
- TowerWaterSys Demand Inlet Node, !- Demand Side Inlet Node Name
- TowerWaterSys Demand Outlet Node, !- Demand Side Outlet Node Name
- TowerWaterSys Demand Branches, !- Condenser Demand Side Branch List Name
- TowerWaterSys Demand Connectors, !- Condenser Demand Side Connector List Name
- SequentialLoad; !- Load Distribution Scheme
-
-!- =========== ALL OBJECTS IN CLASS: PLANT OPERATION SCHEMES ===========
-
- PlantEquipmentOperationSchemes,
- SHWSys1 Loop Operation Scheme List, !- Name
- PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type
- SHWSys1 Operation Scheme,!- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
- PlantEquipmentOperationSchemes,
- HeatSys1 Loop Operation Scheme List, !- Name
- PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type
- HeatSys1 Operation Scheme, !- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
- PlantEquipmentOperationSchemes,
- CoolSys1 Loop Operation Scheme List, !- Name
- PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type
- CoolSys1 Operation Scheme, !- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
- PlantEquipmentOperationSchemes,
- CoolSys1 Sec Loop Operation, !- Name
- PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type
- CoolSys1 Sec Operation Scheme, !- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
- PlantEquipmentOperationSchemes,
- Heat Recovery Loop Operation, !- Name
- PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type
- Dummy Water Heater Only, !- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
- PlantEquipmentOperationSchemes,
- Heat Recovery Chiller Bypass Loop Operation, !- Name
- PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type
- Heat Recovery Chiller, !- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
-
-!- =========== ALL OBJECTS IN CLASS: CONDENSER OPERATION SCHEMES ===========
-
- CondenserEquipmentOperationSchemes,
- TowerWaterSys Loop Operation Scheme List, !- Name
- PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type
- TowerWaterSys Operation Scheme, !- Control Scheme 1 Name
- PlantOnSched; !- Control Scheme 1 Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: COOLING LOAD RANGE BASED OPERATION ===========
-
-PlantEquipmentOperation:CoolingLoad,
- Heat Recovery Chiller, !- Name
- 0.0, !- Load Range 1 Lower Limit {W}
-100000000000000, !- Load Range 1 Upper Limit {W}
- Heat Recovery Equipment List; !- Range 1 Equipment List Name
-
-
- PlantEquipmentOperation:CoolingLoad,
- CoolSys1 Operation Scheme, !- Name
- 0.0, !- Load Range 1 Lower Limit {W}
-944335.99, !- Load Range 1 Upper Limit {W}
- CoolSys1 Equipment List 1, !- Range 1 Equipment List Name
-944335.99, !- Load Range 2 Lower Limit {W}
- 100000000000000, !- Load Range 2 Upper Limit {W}
- CoolSys1 Equipment List 2; !- Range 2 Equipment List Name
-
- PlantEquipmentOperation:CoolingLoad,
- CoolSys1 Sec Operation Scheme, !- Name
- 0, !- Load Range 1 Lower Limit {W}
-944335.99, !- Load Range 1 Upper Limit {W}
- CoolSys1 HeatExchanger; !- Range 1 Equipment List Name
-
- PlantEquipmentOperation:CoolingLoad,
- TowerWaterSys Operation Scheme, !- Name
- 0.0, !- Load Range 1 Lower Limit {W}
-944335.99, !- Load Range 1 Upper Limit {W}
- TowerWaterSys Equipment List 1, !- Range 1 Equipment List Name
-944335.99, !- Load Range 2 Lower Limit {W}
- 100000000000000, !- Load Range 2 Upper Limit {W}
- TowerWaterSys Equipment List 2; !- Range 2 Equipment List Name
-
-!- =========== ALL OBJECTS IN CLASS: HEATING LOAD RANGE BASED OPERATION ===========
-
- PlantEquipmentOperation:HeatingLoad,
- SHWSys1 Operation Scheme,!- Name
- 0.0, !- Load Range 1 Lower Limit {W}
- 1000000000000000, !- Load Range 1 Upper Limit {W}
- SHWSys1 Equipment List; !- Range 1 Equipment List Name
-
- PlantEquipmentOperation:HeatingLoad,
- HeatSys1 Operation Scheme, !- Name
- 0.0, !- Load Range 1 Lower Limit {W}
- 1000000000000000, !- Load Range 1 Upper Limit {W}
- HeatSys1 Equipment List; !- Range 1 Equipment List Name
-
-
- PlantEquipmentOperation:HeatingLoad,
- Dummy Water Heater Only, !- Name
- 0, !- Load Range 1 Lower Limit {W}
- 1000000000000000, !- Load Range 1 Upper Limit {W}
- Heat Recovery Plant Equipment List; !- Range 1 Equipment List Name
-
-
-
-!- =========== ALL OBJECTS IN CLASS: PLANT EQUIPMENT LIST ===========
-
- PlantEquipmentList,
- SHWSys1 Equipment List, !- Name
- WaterHeater:Mixed, !- Equipment 1 Object Type
- SHWSys1 Water Heater; !- Equipment 1 Name
-
- PlantEquipmentList,
- HeatSys1 Equipment List, !- Name
- Boiler:HotWater, !- Equipment 1 Object Type
- HeatSys1 Boiler; !- Equipment 1 Name
-
- PlantEquipmentList,
- CoolSys1 Equipment List 1, !- Name
- Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type
- CoolSys1 Chiller1; !- Equipment 1 Name
-
- PlantEquipmentList,
- CoolSys1 Equipment List 2, !- Name
- Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type
- CoolSys1 Chiller1, !- Equipment 1 Name
- Chiller:Electric:ReformulatedEIR, !- Equipment 2 Object Type
- CoolSys1 Chiller2; !- Equipment 2 Name
-
- PlantEquipmentList,
- CoolSys1 HeatExchanger, !- Name
- HeatExchanger:FluidToFluid, !- Equipment 1 Object Type
- Bypass Heat Exchanger ; !- Equipment 1 Name
-
- PlantEquipmentList,
- Heat Recovery Plant Equipment List, !- Name
- WaterHeater:Mixed, !- Equipment 1 Object Type
- Dummy Water Heater; !- Equipment 1 Name
-
- PlantEquipmentList,
- Heat Recovery Equipment List, !- Name
- Chiller:Electric:EIR, !- Equipment 1 Object Type
- Heat Recovery Chiller; !- Equipment 1 Name
-
- PlantEquipmentList,
- Bypass Heat Exchanger , !- Name
- HeatExchanger:FluidToFluid, !- Equipment 1 Object Type
- Bypass Heat Exchanger ; !- Equipment 1 Name
-
-
-!- =========== ALL OBJECTS IN CLASS: CONDENSER EQUIPMENT LIST ===========
-
- CondenserEquipmentList,
- TowerWaterSys Equipment List 1, !- Name
- CoolingTower:VariableSpeed, !- Equipment 1 Object Type
- TowerWaterSys CoolTower 1; !- Equipment 1 Name
-
- CondenserEquipmentList,
- TowerWaterSys Equipment List 2, !- Name
- CoolingTower:VariableSpeed, !- Equipment 1 Object Type
- TowerWaterSys CoolTower 1, !- Equipment 1 Name
- CoolingTower:VariableSpeed, !- Equipment 2 Object Type
- TowerWaterSys CoolTower 2; !- Equipment 2 Name
-
-!- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER ===========
-
-Connector:Splitter,
- Heat Recovery Supply Splitter, !- Name
- Heat Recovery Supply Inlet Branch, !- Inlet Branch Name
- Dummy Water Heater Branch; !- Outlet Branch 1 Name
-
-Connector:Splitter,
- Heat Recovery Splitter, !- Name
- Heat Recovery Inlet Branch, !- Inlet Branch Name
- Heat Recovery Chiller HR Branch, !- Outlet Branch 1 Name
- Heat Recovery Bypass Branch; !- Outlet Branch 2 Name
-
-
- Connector:Splitter,
- SHWSys1 Supply Splitter, !- Name
- SHWSys1 Supply Inlet Branch, !- Inlet Branch Name
- SHWSys1 Supply Equipment Branch, !- Outlet Branch 1 Name
- SHWSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name
-
- Connector:Splitter,
- SHWSys1 Demand Splitter, !- Name
- SHWSys1 Demand Inlet Branch, !- Inlet Branch Name
- SHWSys1 Demand Load Branch 1, !- Outlet Branch 1 Name
- SHWSys1 Demand Load Branch 2, !- Outlet Branch 2 Name
- SHWSys1 Demand Load Branch 3, !- Outlet Branch 3 Name
- SHWSys1 Demand Load Branch 4, !- Outlet Branch 4 Name
- SHWSys1 Demand Load Branch 5, !- Outlet Branch 5 Name
- SHWSys1 Demand Load Branch 6, !- Outlet Branch 6 Name
- SHWSys1 Demand Load Branch 7, !- Outlet Branch 7 Name
- SHWSys1 Demand Load Branch 8, !- Outlet Branch 8 Name
- SHWSys1 Demand Load Branch 9, !- Outlet Branch 9 Name
- SHWSys1 Demand Load Branch 10, !- Outlet Branch 10 Name
- SHWSys1 Demand Load Branch 11, !- Outlet Branch 11 Name
- SHWSys1 Demand Load Branch 12, !- Outlet Branch 12 Name
- SHWSys1 Demand Load Branch 13, !- Outlet Branch 13 Name
- SHWSys1 Demand Load Branch 14, !- Outlet Branch 14 Name
- SHWSys1 Demand Load Branch 15, !- Outlet Branch 15 Name
- SHWSys1 Demand Load Branch 16, !- Outlet Branch 16 Name
- SHWSys1 Demand Load Branch 17, !- Outlet Branch 17 Name
- SHWSys1 Demand Load Branch 18, !- Outlet Branch 18 Name
- SHWSys1 Demand Load Branch 19, !- Outlet Branch 19 Name
- SHWSys1 Demand Load Branch 20, !- Outlet Branch 20 Name
- SHWSys1 Demand Load Branch 21, !- Outlet Branch 21 Name
- SHWSys1 Demand Load Branch 22, !- Outlet Branch 22 Name
- SHWSys1 Demand Load Branch 23, !- Outlet Branch 23 Name
- SHWSys1 Demand Load Branch 24, !- Outlet Branch 24 Name
- SHWSys1 Demand Load Branch 25, !- Outlet Branch 25 Name
- SHWSys1 Demand Load Branch 26, !- Outlet Branch 26 Name
- SHWSys1 Demand Load Branch 27, !- Outlet Branch 27 Name
- SHWSys1 Demand Load Branch 28, !- Outlet Branch 28 Name
- SHWSys1 Demand Load Branch 29, !- Outlet Branch 29 Name
- SHWSys1 Demand Load Branch 30, !- Outlet Branch 30 Name
- SHWSys1 Demand Bypass Branch; !- Outlet Branch 31 Name
-
- Connector:Splitter,
- HeatSys1 Supply Splitter,!- Name
- HeatSys1 Supply Inlet Branch, !- Inlet Branch Name
- HeatSys1 Supply Equipment Branch, !- Outlet Branch 1 Name
- HeatSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name
-
- Connector:Splitter,
- HeatSys1 Demand Splitter,!- Name
- HeatSys1 Demand Inlet Branch, !- Inlet Branch Name
- HeatSys1 Demand Load Branch 1, !- Outlet Branch 1 Name
- HeatSys1 Demand Load Branch 2, !- Outlet Branch 2 Name
- HeatSys1 Demand Load Branch 3, !- Outlet Branch 3 Name
- HeatSys1 Demand Load Branch 4, !- Outlet Branch 4 Name
- HeatSys1 Demand Load Branch 5, !- Outlet Branch 5 Name
- HeatSys1 Demand Load Branch 6, !- Outlet Branch 6 Name
- HeatSys1 Demand Load Branch 7, !- Outlet Branch 7 Name
- HeatSys1 Demand Load Branch 8, !- Outlet Branch 8 Name
- HeatSys1 Demand Load Branch 9, !- Outlet Branch 9 Name
- HeatSys1 Demand Load Branch 10, !- Outlet Branch 10 Name
- HeatSys1 Demand Load Branch 11, !- Outlet Branch 11 Name
- HeatSys1 Demand Load Branch 12, !- Outlet Branch 12 Name
- HeatSys1 Demand Load Branch 13, !- Outlet Branch 13 Name
- HeatSys1 Demand Load Branch 14, !- Outlet Branch 14 Name
- HeatSys1 Demand Load Branch 15, !- Outlet Branch 15 Name
- HeatSys1 Demand Load Branch 16, !- Outlet Branch 16 Name
- HeatSys1 Demand Load Branch 17, !- Outlet Branch 17 Name
- HeatSys1 Demand Load Branch 18, !- Outlet Branch 18 Name
- HeatSys1 Demand Load Branch 19, !- Outlet Branch 19 Name
- HeatSys1 Demand Load Branch 20, !- Outlet Branch 20 Name
- HeatSys1 Demand Load Branch 21, !- Outlet Branch 21 Name
- HeatSys1 Demand Load Branch 22, !- Outlet Branch 22 Name
- HeatSys1 Demand Load Branch 23, !- Outlet Branch 23 Name
- HeatSys1 Demand Load Branch 24, !- Outlet Branch 24 Name
- HeatSys1 Demand Load Branch 25, !- Outlet Branch 25 Name
- HeatSys1 Demand Load Branch 26, !- Outlet Branch 26 Name
- HeatSys1 Demand Load Branch 27, !- Outlet Branch 27 Name
- HeatSys1 Demand Load Branch 28, !- Outlet Branch 28 Name
- HeatSys1 Demand Load Branch 29, !- Outlet Branch 29 Name
- HeatSys1 Demand Load Branch 30, !- Outlet Branch 30 Name
- HeatSys1 Demand Load Branch 31, !- Outlet Branch 31 Name
- HeatSys1 Demand Load Branch 32, !- Outlet Branch 32 Name
- HeatSys1 Demand Load Branch 33, !- Outlet Branch 33 Name
- HeatSys1 Demand Load Branch 34, !- Outlet Branch 34 Name
- HeatSys1 Demand Load Branch 35, !- Outlet Branch 35 Name
- HeatSys1 Demand Load Branch 36, !- Outlet Branch 36 Name
- HeatSys1 Demand Load Branch 37, !- Outlet Branch 37 Name
- HeatSys1 Demand Load Branch 38, !- Outlet Branch 38 Name
- HeatSys1 Demand Load Branch 39, !- Outlet Branch 39 Name
- HeatSys1 Demand Load Branch 40, !- Outlet Branch 40 Name
- HeatSys1 Demand Load Branch 41, !- Outlet Branch 41 Name
- HeatSys1 Demand Load Branch 42, !- Outlet Branch 42 Name
- HeatSys1 Demand Load Branch 43, !- Outlet Branch 43 Name
- HeatSys1 Demand Load Branch 44, !- Outlet Branch 44 Name
- HeatSys1 Demand Load Branch 45, !- Outlet Branch 45 Name
- HeatSys1 Demand Load Branch 46, !- Outlet Branch 46 Name
- HeatSys1 Demand Load Branch 47, !- Outlet Branch 47 Name
- HeatSys1 Demand Load Branch 48, !- Outlet Branch 48 Name
- HeatSys1 Demand Load Branch 49, !- Outlet Branch 49 Name
- HeatSys1 Demand Load Branch 50, !- Outlet Branch 50 Name
- HeatSys1 Demand Load Branch 51, !- Outlet Branch 51 Name
- HeatSys1 Demand Load Branch 52, !- Outlet Branch 52 Name
- HeatSys1 Demand Load Branch 53, !- Outlet Branch 53 Name
- HeatSys1 Demand Load Branch 54, !- Outlet Branch 54 Name
- HeatSys1 Demand Load Branch 55, !- Outlet Branch 55 Name
- HeatSys1 Demand Load Branch 56, !- Outlet Branch 56 Name
- HeatSys1 Demand Load Branch 57, !- Outlet Branch 57 Name
- HeatSys1 Demand Load Branch 58, !- Outlet Branch 58 Name
- HeatSys1 Demand Load Branch 59, !- Outlet Branch 59 Name
- HeatSys1 Demand Load Branch 60, !- Outlet Branch 60 Name
- HeatSys1 Demand Load Branch 61, !- Outlet Branch 61 Name
- HeatSys1 Demand Load Branch 62, !- Outlet Branch 62 Name
- HeatSys1 Demand Load Branch 63, !- Outlet Branch 63 Name
- HeatSys1 Demand Load Branch 64, !- Outlet Branch 64 Name
- HeatSys1 Demand Load Branch 65, !- Outlet Branch 65 Name
- HeatSys1 Demand Load Branch 66, !- Outlet Branch 66 Name
- HeatSys1 Demand Load Branch 67, !- Outlet Branch 67 Name
- HeatSys1 Demand Bypass Branch; !- Outlet Branch 68 Name
-
- Connector:Splitter,
- CoolSys1 Supply Supply Side Splitter,!- Name
- CoolSys1 Supply Inlet Branch, !- Inlet Branch Name
- CoolSys1 Supply Equipment Branch 1, !- Outlet Branch 1 Name
- CoolSys1 Supply Equipment Branch 2, !- Outlet Branch 2 Name
- CoolSys1 Supply Equipment Bypass Branch; !- Outlet Branch 3 Name
-
- Connector:Splitter,
- CoolSys1 Demand Demand Side Splitter,!- Name
- CoolSys1 Demand Inlet Branch, !- Inlet Branch Name
- CoolSys1 Demand Load Branch 1, !- Outlet Branch 1 Name
- CoolSys1 Demand Load Branch 2, !- Outlet Branch 2 Name
- CoolSys1 Demand Load Branch 3, !- Outlet Branch 3 Name
- CoolSys1 Demand Load Branch 4, !- Outlet Branch 4 Name
- CoolSys1 Demand Load Branch 5, !- Outlet Branch 5 Name
- CoolSys1 Demand Load Branch 6, !- Outlet Branch 6 Name
- CoolSys1 Demand Load Branch 7, !- Outlet Branch 7 Name
- CoolSys1 Demand Load Branch 8; !- Outlet Branch 8 Name
-
- Connector:Splitter,
- TowerWaterSys Supply Splitter, !- Name
- TowerWaterSys Supply Inlet Branch, !- Inlet Branch Name
- TowerWaterSys Supply Equipment Branch 1, !- Outlet Branch 1 Name
- TowerWaterSys Supply Equipment Branch 2, !- Outlet Branch 2 Name
- TowerWaterSys Supply Equipment Bypass Branch; !- Outlet Branch 3 Name
-
- Connector:Splitter,
- TowerWaterSys Demand Splitter, !- Name
- TowerWaterSys Demand Inlet Branch, !- Inlet Branch Name
- TowerWaterSys Demand Load Branch 1, !- Outlet Branch 1 Name
- TowerWaterSys Demand Load Branch 2, !- Outlet Branch 2 Name
- TowerWaterSys Demand Load Branch 3, !- Outlet Branch Name
- TowerWaterSys Demand Bypass Branch; !- Outlet Branch 3 Name
-
- Connector:Splitter,
- CoolSys1 Supply Demand Side Splitter, !- Name
- CoolSys1 Supply Demand Side Inlet Branch, !- Inlet Branch Name
- CoolSys1 Heat Exchanger Supply Branch, !- Outlet Branch 1 Name
- CoolSys1 Supply Side Bypass; !- Outlet Branch 2 Name
-
- Connector:Splitter,
- CoolSys1 Demand Supply Side Splitter, !- Name
- CoolSys1 Demand Supply Side Inlet Branch, !- Inlet Branch Name
- CoolSys1 Heat Exchanger Demand Branch, !- Outlet Branch 1 Name
- CoolSys1 Demand Side Bypass; !- Outlet Branch 2 Name
-
-!- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER ===========
-
-Connector:Mixer,
- Heat Recovery Supply Mixer, !- Name
- Heat Recovery Supply Outlet Branch, !- Outlet Branch Name
- Dummy Water Heater Branch; !- Inlet Branch 1 Name
-
-Connector:Mixer,
- Heat Recovery Mixer, !- Name
- Heat Recovery Outlet Branch, !- Outlet Branch Name
- Heat Recovery Chiller HR Branch, !- Inlet Branch 1 Name
- Heat Recovery Bypass Branch; !- Inlet Branch 2 Name
-
-
- Connector:Mixer,
- SHWSys1 Supply Mixer, !- Name
- SHWSys1 Supply Outlet Branch, !- Outlet Branch Name
- SHWSys1 Supply Equipment Branch, !- Inlet Branch 1 Name
- SHWSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name
-
- Connector:Mixer,
- SHWSys1 Demand Mixer, !- Name
- SHWSys1 Demand Outlet Branch, !- Outlet Branch Name
- SHWSys1 Demand Load Branch 1, !- Inlet Branch 1 Name
- SHWSys1 Demand Load Branch 2, !- Inlet Branch 2 Name
- SHWSys1 Demand Load Branch 3, !- Inlet Branch 3 Name
- SHWSys1 Demand Load Branch 4, !- Inlet Branch 4 Name
- SHWSys1 Demand Load Branch 5, !- Inlet Branch 5 Name
- SHWSys1 Demand Load Branch 6, !- Inlet Branch 6 Name
- SHWSys1 Demand Load Branch 7, !- Inlet Branch 7 Name
- SHWSys1 Demand Load Branch 8, !- Inlet Branch 8 Name
- SHWSys1 Demand Load Branch 9, !- Inlet Branch 9 Name
- SHWSys1 Demand Load Branch 10, !- Inlet Branch 10 Name
- SHWSys1 Demand Load Branch 11, !- Inlet Branch 11 Name
- SHWSys1 Demand Load Branch 12, !- Inlet Branch 12 Name
- SHWSys1 Demand Load Branch 13, !- Inlet Branch 13 Name
- SHWSys1 Demand Load Branch 14, !- Inlet Branch 14 Name
- SHWSys1 Demand Load Branch 15, !- Inlet Branch 15 Name
- SHWSys1 Demand Load Branch 16, !- Inlet Branch 16 Name
- SHWSys1 Demand Load Branch 17, !- Inlet Branch 17 Name
- SHWSys1 Demand Load Branch 18, !- Inlet Branch 18 Name
- SHWSys1 Demand Load Branch 19, !- Inlet Branch 19 Name
- SHWSys1 Demand Load Branch 20, !- Inlet Branch 20 Name
- SHWSys1 Demand Load Branch 21, !- Inlet Branch 21 Name
- SHWSys1 Demand Load Branch 22, !- Inlet Branch 22 Name
- SHWSys1 Demand Load Branch 23, !- Inlet Branch 23 Name
- SHWSys1 Demand Load Branch 24, !- Inlet Branch 24 Name
- SHWSys1 Demand Load Branch 25, !- Inlet Branch 25 Name
- SHWSys1 Demand Load Branch 26, !- Inlet Branch 26 Name
- SHWSys1 Demand Load Branch 27, !- Inlet Branch 27 Name
- SHWSys1 Demand Load Branch 28, !- Inlet Branch 28 Name
- SHWSys1 Demand Load Branch 29, !- Inlet Branch 29 Name
- SHWSys1 Demand Load Branch 30, !- Inlet Branch 30 Name
- SHWSys1 Demand Bypass Branch; !- Inlet Branch 31 Name
-
- Connector:Mixer,
- HeatSys1 Supply Mixer, !- Name
- HeatSys1 Supply Outlet Branch, !- Outlet Branch Name
- HeatSys1 Supply Equipment Branch, !- Inlet Branch 1 Name
- HeatSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name
-
- Connector:Mixer,
- HeatSys1 Demand Mixer, !- Name
- HeatSys1 Demand Outlet Branch, !- Outlet Branch Name
- HeatSys1 Demand Load Branch 1, !- Inlet Branch 1 Name
- HeatSys1 Demand Load Branch 2, !- Inlet Branch 2 Name
- HeatSys1 Demand Load Branch 3, !- Inlet Branch 3 Name
- HeatSys1 Demand Load Branch 4, !- Inlet Branch 4 Name
- HeatSys1 Demand Load Branch 5, !- Inlet Branch 5 Name
- HeatSys1 Demand Load Branch 6, !- Inlet Branch 6 Name
- HeatSys1 Demand Load Branch 7, !- Inlet Branch 7 Name
- HeatSys1 Demand Load Branch 8, !- Inlet Branch 8 Name
- HeatSys1 Demand Load Branch 9, !- Inlet Branch 9 Name
- HeatSys1 Demand Load Branch 10, !- Inlet Branch 10 Name
- HeatSys1 Demand Load Branch 11, !- Inlet Branch 11 Name
- HeatSys1 Demand Load Branch 12, !- Inlet Branch 12 Name
- HeatSys1 Demand Load Branch 13, !- Inlet Branch 13 Name
- HeatSys1 Demand Load Branch 14, !- Inlet Branch 14 Name
- HeatSys1 Demand Load Branch 15, !- Inlet Branch 15 Name
- HeatSys1 Demand Load Branch 16, !- Inlet Branch 16 Name
- HeatSys1 Demand Load Branch 17, !- Inlet Branch 17 Name
- HeatSys1 Demand Load Branch 18, !- Inlet Branch 18 Name
- HeatSys1 Demand Load Branch 19, !- Inlet Branch 19 Name
- HeatSys1 Demand Load Branch 20, !- Inlet Branch 20 Name
- HeatSys1 Demand Load Branch 21, !- Inlet Branch 21 Name
- HeatSys1 Demand Load Branch 22, !- Inlet Branch 22 Name
- HeatSys1 Demand Load Branch 23, !- Inlet Branch 23 Name
- HeatSys1 Demand Load Branch 24, !- Inlet Branch 24 Name
- HeatSys1 Demand Load Branch 25, !- Inlet Branch 25 Name
- HeatSys1 Demand Load Branch 26, !- Inlet Branch 26 Name
- HeatSys1 Demand Load Branch 27, !- Inlet Branch 27 Name
- HeatSys1 Demand Load Branch 28, !- Inlet Branch 28 Name
- HeatSys1 Demand Load Branch 29, !- Inlet Branch 29 Name
- HeatSys1 Demand Load Branch 30, !- Inlet Branch 30 Name
- HeatSys1 Demand Load Branch 31, !- Inlet Branch 31 Name
- HeatSys1 Demand Load Branch 32, !- Inlet Branch 32 Name
- HeatSys1 Demand Load Branch 33, !- Inlet Branch 33 Name
- HeatSys1 Demand Load Branch 34, !- Inlet Branch 34 Name
- HeatSys1 Demand Load Branch 35, !- Inlet Branch 35 Name
- HeatSys1 Demand Load Branch 36, !- Inlet Branch 36 Name
- HeatSys1 Demand Load Branch 37, !- Inlet Branch 37 Name
- HeatSys1 Demand Load Branch 38, !- Inlet Branch 38 Name
- HeatSys1 Demand Load Branch 39, !- Inlet Branch 39 Name
- HeatSys1 Demand Load Branch 40, !- Inlet Branch 40 Name
- HeatSys1 Demand Load Branch 41, !- Inlet Branch 41 Name
- HeatSys1 Demand Load Branch 42, !- Inlet Branch 42 Name
- HeatSys1 Demand Load Branch 43, !- Inlet Branch 43 Name
- HeatSys1 Demand Load Branch 44, !- Inlet Branch 44 Name
- HeatSys1 Demand Load Branch 45, !- Inlet Branch 45 Name
- HeatSys1 Demand Load Branch 46, !- Inlet Branch 46 Name
- HeatSys1 Demand Load Branch 47, !- Inlet Branch 47 Name
- HeatSys1 Demand Load Branch 48, !- Inlet Branch 48 Name
- HeatSys1 Demand Load Branch 49, !- Inlet Branch 49 Name
- HeatSys1 Demand Load Branch 50, !- Inlet Branch 50 Name
- HeatSys1 Demand Load Branch 51, !- Inlet Branch 51 Name
- HeatSys1 Demand Load Branch 52, !- Inlet Branch 52 Name
- HeatSys1 Demand Load Branch 53, !- Inlet Branch 53 Name
- HeatSys1 Demand Load Branch 54, !- Inlet Branch 54 Name
- HeatSys1 Demand Load Branch 55, !- Inlet Branch 55 Name
- HeatSys1 Demand Load Branch 56, !- Inlet Branch 56 Name
- HeatSys1 Demand Load Branch 57, !- Inlet Branch 57 Name
- HeatSys1 Demand Load Branch 58, !- Inlet Branch 58 Name
- HeatSys1 Demand Load Branch 59, !- Inlet Branch 59 Name
- HeatSys1 Demand Load Branch 60, !- Inlet Branch 60 Name
- HeatSys1 Demand Load Branch 61, !- Inlet Branch 61 Name
- HeatSys1 Demand Load Branch 62, !- Inlet Branch 62 Name
- HeatSys1 Demand Load Branch 63, !- Inlet Branch 63 Name
- HeatSys1 Demand Load Branch 64, !- Inlet Branch 64 Name
- HeatSys1 Demand Load Branch 65, !- Inlet Branch 65 Name
- HeatSys1 Demand Load Branch 66, !- Inlet Branch 66 Name
- HeatSys1 Demand Load Branch 67, !- Inlet Branch 67 Name
- HeatSys1 Demand Bypass Branch; !- Inlet Branch 68 Name
-
- Connector:Mixer,
- CoolSys1 Supply Supply Side Mixer, !- Name
- CoolSys1 Supply Outlet Branch, !- Outlet Branch Name
- CoolSys1 Supply Equipment Branch 1, !- Inlet Branch 1 Name
- CoolSys1 Supply Equipment Branch 2, !- Inlet Branch 2 Name
- CoolSys1 Supply Equipment Bypass Branch; !- Inlet Branch 3 Name
-
- Connector:Mixer,
- CoolSys1 Demand Demand Side Mixer, !- Name
- CoolSys1 Demand Outlet Branch, !- Outlet Branch Name
- CoolSys1 Demand Load Branch 1, !- Inlet Branch 1 Name
- CoolSys1 Demand Load Branch 2, !- Inlet Branch 2 Name
- CoolSys1 Demand Load Branch 3, !- Inlet Branch 3 Name
- CoolSys1 Demand Load Branch 4, !- Inlet Branch 4 Name
- CoolSys1 Demand Load Branch 5, !- Inlet Branch 5 Name
- CoolSys1 Demand Load Branch 6, !- Inlet Branch 6 Name
- CoolSys1 Demand Load Branch 7, !- Inlet Branch 7 Name
- CoolSys1 Demand Load Branch 8; !- Inlet Branch 8 Name
-
- Connector:Mixer,
- TowerWaterSys Supply Mixer, !- Name
- TowerWaterSys Supply Outlet Branch, !- Outlet Branch Name
- TowerWaterSys Supply Equipment Branch 1, !- Inlet Branch 1 Name
- TowerWaterSys Supply Equipment Branch 2, !- Inlet Branch 2 Name
- TowerWaterSys Supply Equipment Bypass Branch; !- Inlet Branch 3 Name
-
- Connector:Mixer,
- TowerWaterSys Demand Mixer, !- Name
- TowerWaterSys Demand Outlet Branch, !- Outlet Branch Name
- TowerWaterSys Demand Load Branch 1, !- Inlet Branch 1 Name
- TowerWaterSys Demand Load Branch 2, !- Inlet Branch 2 Name
- TowerWaterSys Demand Load Branch 3, !- Inlet Branch Name
- TowerWaterSys Demand Bypass Branch; !- Inlet Branch 3 Name
-
- Connector:Mixer,
- CoolSys1 Supply Demand Side Mixer, !- Name
- CoolSys1 Supply Demand Side Outlet Branch, !- Outlet Branch Name
- CoolSys1 Heat Exchanger Supply Branch, !- Inlet Branch 1 Name
- CoolSys1 Supply Side Bypass; !- Inlet Branch 2 Name
-
- Connector:Mixer,
- CoolSys1 Demand Supply Side Mixer, !- Name
- CoolSys1 Demand Supply Side Outlet Branch, !- Outlet Branch Name
- CoolSys1 Heat Exchanger Demand Branch, !- Inlet Branch 1 Name
- CoolSys1 Demand Side Bypass; !- Inlet Branch 2 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC ===========
-
- AirLoopHVAC,
- VAV_1, !- Name
- VAV_1_Controllers, !- Controller List Name
- VAV_1 Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_1 Air Loop Branches, !- Branch List Name
- , !- Connector List Name
- VAV_1 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_1 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_1 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- VAV_ER, !- Name
- VAV_ER_Controllers, !- Controller List Name
- VAV_ER Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_ER Air Loop Branches,!- Branch List Name
- , !- Connector List Name
- VAV_ER Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_ER Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_ER Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_ER Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- VAV_OR, !- Name
- VAV_OR_Controllers, !- Controller List Name
- VAV_OR Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_OR Air Loop Branches,!- Branch List Name
- , !- Connector List Name
- VAV_OR Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_OR Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_OR Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_OR Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- VAV_ICU, !- Name
- VAV_ICU_Controllers, !- Controller List Name
- VAV_ICU Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_ICU Air Loop Branches, !- Branch List Name
- , !- Connector List Name
- VAV_ICU Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_ICU Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_ICU Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_ICU Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- VAV_PATRMS, !- Name
- VAV_PATRMS_Controllers, !- Controller List Name
- VAV_PATRMS Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_PATRMS Air Loop Branches, !- Branch List Name
- , !- Connector List Name
- VAV_PATRMS Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_PATRMS Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_PATRMS Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_PATRMS Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- VAV_2, !- Name
- VAV_2_Controllers, !- Controller List Name
- VAV_2 Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_2 Air Loop Branches, !- Branch List Name
- , !- Connector List Name
- VAV_2 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_2 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_2 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- VAV_LABS, !- Name
- VAV_LABS_Controllers, !- Controller List Name
- VAV_LABS Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- VAV_LABS Air Loop Branches, !- Branch List Name
- , !- Connector List Name
- VAV_LABS Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- VAV_LABS Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- VAV_LABS Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- VAV_LABS Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
- AirLoopHVAC,
- CAV_KITCHEN, !- Name
- CAV_KITCHEN_Controllers, !- Controller List Name
- CAV_KITCHEN Availability Manager List, !- Availability Manager List Name
- AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}
- CAV_KITCHEN Air Loop Branches, !- Branch List Name
- , !- Connector List Name
- CAV_KITCHEN Supply Equipment Inlet Node, !- Supply Side Inlet Node Name
- CAV_KITCHEN Zone Equipment Outlet Node, !- Demand Side Outlet Node Name
- CAV_KITCHEN Zone Equipment Inlet Node, !- Demand Side Inlet Node Names
- CAV_KITCHEN Supply Equipment Outlet Node; !- Supply Side Outlet Node Names
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:CONTROLLERLIST ===========
-
- AirLoopHVAC:ControllerList,
- VAV_1_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_1_CoolC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_1_HeatC_Controller; !- Controller 2 Name
-
- AirLoopHVAC:ControllerList,
- VAV_1_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_1_OA_Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- VAV_ER_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_ER_ExtraWaterHeatC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_ER_CoolC_Controller, !- Controller 2 Name
- Controller:WaterCoil, !- Controller 3 Object Type
- VAV_ER_HeatC_Controller; !- Controller 3 Name
-
- AirLoopHVAC:ControllerList,
- VAV_ER_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_ER_OA_Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- VAV_OR_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_OR_ExtraWaterHeatC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_OR_CoolC_Controller, !- Controller 2 Name
- Controller:WaterCoil, !- Controller 3 Object Type
- VAV_OR_HeatC_Controller; !- Controller 3 Name
-
- AirLoopHVAC:ControllerList,
- VAV_OR_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_OR_OA_Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- VAV_ICU_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_ICU_ExtraWaterHeatC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_ICU_CoolC_Controller,!- Controller 2 Name
- Controller:WaterCoil, !- Controller 3 Object Type
- VAV_ICU_HeatC_Controller;!- Controller 3 Name
-
- AirLoopHVAC:ControllerList,
- VAV_ICU_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_ICU_OA_Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- VAV_PATRMS_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_PATRMS_ExtraWaterHeatC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_PATRMS_CoolC_Controller, !- Controller 2 Name
- Controller:WaterCoil, !- Controller 3 Object Type
- VAV_PATRMS_HeatC_Controller; !- Controller 3 Name
-
- AirLoopHVAC:ControllerList,
- VAV_PATRMS_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_PATRMS_OA_Controller;!- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- VAV_2_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_2_CoolC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_2_HeatC_Controller; !- Controller 2 Name
-
- AirLoopHVAC:ControllerList,
- VAV_2_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_2_OA_Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- VAV_LABS_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- VAV_LABS_ExtraWaterHeatC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- VAV_LABS_CoolC_Controller, !- Controller 2 Name
- Controller:WaterCoil, !- Controller 3 Object Type
- VAV_LABS_HeatC_Controller; !- Controller 3 Name
-
- AirLoopHVAC:ControllerList,
- VAV_LABS_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- VAV_LABS_OA_Controller; !- Controller 1 Name
-
- AirLoopHVAC:ControllerList,
- CAV_KITCHEN_Controllers, !- Name
- Controller:WaterCoil, !- Controller 1 Object Type
- CAV_KITCHEN_CoolC_Controller, !- Controller 1 Name
- Controller:WaterCoil, !- Controller 2 Object Type
- CAV_KITCHEN_HeatC_Controller; !- Controller 2 Name
-
- AirLoopHVAC:ControllerList,
- CAV_KITCHEN_OA_Controllers, !- Name
- Controller:OutdoorAir, !- Controller 1 Object Type
- CAV_KITCHEN_OA_Controller; !- Controller 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM:EQUIPMENTLIST ===========
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_1_OA_Equipment, !- Name
- HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type
- VAV_1 OA Heat Recovery, !- Component 1 Name
- OutdoorAir:Mixer, !- Component 2 Object Type
- VAV_1_OAMixing Box; !- Component 2 Name
-
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_ER_OA_Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- VAV_ER_OAMixing Box; !- Component 1 Name
-
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_OR_OA_Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- VAV_OR_OAMixing Box; !- Component 1 Name
-
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_ICU_OA_Equipment, !- Name
- HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type
- ICU OA Heat Recovery, !- Component 1 Name
- OutdoorAir:Mixer, !- Component 2 Object Type
- VAV_ICU_OAMixing Box; !- Component 2 Name
-
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_PATRMS_OA_Equipment, !- Name
- HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type
- PATRMS OA Heat Recovery, !- Component 1 Name
- OutdoorAir:Mixer, !- Component 2 Object Type
- VAV_PATRMS_OAMixing Box; !- Component 2 Name
-
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_2_OA_Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- VAV_2_OAMixing Box; !- Component 1 Name
-
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- VAV_LABS_OA_Equipment, !- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- VAV_LABS_OAMixing Box; !- Component 1 Name
-
-
- AirLoopHVAC:OutdoorAirSystem:EquipmentList,
- CAV_KITCHEN_OA_Equipment,!- Name
- OutdoorAir:Mixer, !- Component 1 Object Type
- CAV_KITCHEN_OAMixing Box;!- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM ===========
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_1_OA, !- Name
- VAV_1_OA_Controllers, !- Controller List Name
- VAV_1_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_1 Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_ER_OA, !- Name
- VAV_ER_OA_Controllers, !- Controller List Name
- VAV_ER_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_ER Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_OR_OA, !- Name
- VAV_OR_OA_Controllers, !- Controller List Name
- VAV_OR_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_OR Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_ICU_OA, !- Name
- VAV_ICU_OA_Controllers, !- Controller List Name
- VAV_ICU_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_ICU Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_PATRMS_OA, !- Name
- VAV_PATRMS_OA_Controllers, !- Controller List Name
- VAV_PATRMS_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_PATRMS Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_2_OA, !- Name
- VAV_2_OA_Controllers, !- Controller List Name
- VAV_2_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_2 Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- VAV_LABS_OA, !- Name
- VAV_LABS_OA_Controllers, !- Controller List Name
- VAV_LABS_OA_Equipment, !- Outdoor Air Equipment List Name
- VAV_LABS Availability Manager List; !- Availability Manager List Name
-
- AirLoopHVAC:OutdoorAirSystem,
- CAV_KITCHEN_OA, !- Name
- CAV_KITCHEN_OA_Controllers, !- Controller List Name
- CAV_KITCHEN_OA_Equipment,!- Outdoor Air Equipment List Name
- CAV_KITCHEN Availability Manager List; !- Availability Manager List Name
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR NODE ===========
-
- OutdoorAir:Node,
- RACK1_condenserInlet; !- Name
-
- OutdoorAir:Node,
- RACK2_condenserInlet; !- Name
-
- OutdoorAir:Node,
- TowerWaterSys CoolTower OA ref Node; !- Name
-
- OutdoorAir:Node,
- Dummy Water Heater OA Node; !- Name
-
-
-
-!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR INLET NODE LIST ===========
-
- OutdoorAir:NodeList,
- VAV_1_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- VAV_ER_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- VAV_OR_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- VAV_ICU_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- VAV_PATRMS_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- VAV_2_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- VAV_LABS_OANode List; !- Node or NodeList Name 1
-
- OutdoorAir:NodeList,
- CAV_KITCHEN_OANode List; !- Node or NodeList Name 1
-
-!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:MIXER ===========
- OutdoorAir:Mixer,
- VAV_1_OAMixing Box, !- Name
- VAV_1_OA-VAV_1_CoolCNode, !- Mixed Air Node Name
- VAV_1 Heat Recovery Outlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_1_OARelief Node, !- Relief Air Stream Node Name
- VAV_1 Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- VAV_ER_OAMixing Box, !- Name
- VAV_ER_OA-VAV_ER HumidifierNode, !- Mixed Air Node Name
- VAV_ER_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_ER_OARelief Node, !- Relief Air Stream Node Name
- VAV_ER Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- VAV_OR_OAMixing Box, !- Name
- VAV_OR_OA-VAV_OR HumidifierNode, !- Mixed Air Node Name
- VAV_OR_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_OR_OARelief Node, !- Relief Air Stream Node Name
- VAV_OR Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- VAV_ICU_OAMixing Box, !- Name
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Mixed Air Node Name
- ICU Heat Recovery Outlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_ICU_OARelief Node, !- Relief Air Stream Node Name
- VAV_ICU Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- VAV_PATRMS_OAMixing Box, !- Name
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Mixed Air Node Name
- PATRMS Heat Recovery Outlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_PATRMS_OARelief Node,!- Relief Air Stream Node Name
- VAV_PATRMS Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- VAV_2_OAMixing Box, !- Name
- VAV_2_OA-VAV_2_CoolCNode, !- Mixed Air Node Name
- VAV_2_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_2_OARelief Node, !- Relief Air Stream Node Name
- VAV_2 Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- VAV_LABS_OAMixing Box, !- Name
- VAV_LABS_OA-VAV_LABS HumidifierNode, !- Mixed Air Node Name
- VAV_LABS_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name
- VAV_LABS_OARelief Node, !- Relief Air Stream Node Name
- VAV_LABS Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-
-
- OutdoorAir:Mixer,
- CAV_KITCHEN_OAMixing Box,!- Name
- CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Mixed Air Node Name
- CAV_KITCHEN_OAInlet Node,!- Outdoor Air Stream Node Name
- CAV_KITCHEN_OARelief Node, !- Relief Air Stream Node Name
- CAV_KITCHEN Supply Equipment Inlet Node; !- Return Air Stream Node Name
-
-!- =========== ALL OBJECTS IN CLASS: SYSTEM AVAILABILITY MANAGER LIST ===========
-
- AvailabilityManager:NightCycle,
- VAV_1 Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- VAV_ER Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- VAV_OR Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- VAV_ICU Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- VAV_PATRMS Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- VAV_2 Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- VAV_LABS Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
- AvailabilityManager:NightCycle,
- CAV_KITCHEN Availability Manager, !- Name
- Always_On, !- Applicability Schedule Name
- HVACOperationSchd, !- Fan Schedule Name
- CycleOnAny, !- Control Type
- 1.0, !- Thermostat Tolerance {deltaC}
- FixedRunTime, !- Cycling Run Time Control Type
- 1800; !- Cycling Run Time {s}
-
-!- =========== ALL OBJECTS IN CLASS: SYSTEM AVAILABILITY MANAGER:NIGHT CYCLE ===========
-
- AvailabilityManagerAssignmentList,
- VAV_1 Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_1 Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- VAV_ER Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_ER Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- VAV_OR Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_OR Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- VAV_ICU Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_ICU Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- VAV_PATRMS Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_PATRMS Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- VAV_2 Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_2 Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- VAV_LABS Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- VAV_LABS Availability Manager; !- Availability Manager 1 Name
-
- AvailabilityManagerAssignmentList,
- CAV_KITCHEN Availability Manager List, !- Name
- AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type
- CAV_KITCHEN Availability Manager; !- Availability Manager 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:SCHEDULED ===========
-
- SetpointManager:Scheduled,
- CoolSys1 Loop Plant Demand Inlet Setpoint Manager, !- Name
- Temperature, !- Control Variable
- CW-Loop-Temp-Schedule, !- Schedule Name
- CoolSys1 Demand Inlet Node; !- Setpoint Node or NodeList Name
-
-
-
- SetpointManager:Scheduled,
- SHWSys1 Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- SHWSys1-Loop-Temp-Schedule, !- Schedule Name
- SHWSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name
-
-
- SetpointManager:OutdoorAirReset,
- HeatSys1 Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- 60.0, !- Setpoint at Outdoor Low Temperature {C}
- -6.7, !- Outdoor Low Temperature {C}
- 48.89, !- Setpoint at Outdoor High Temperature {C}
- 10, !- Outdoor High Temperature {C}
- HeatSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- Heat Recovery Chiller Bypass Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- Heat Recovery Chiller Bypass Loop Setpoint Schedule, !- Schedule Name
- Heat Recovery Chiller Outlet; !- Setpoint Node or NodeList Name
-
- Schedule:Constant,
- Heat Recovery Chiller Bypass Loop Setpoint Schedule,
- Temperature,
- 6.67;
-
-
-
- SetpointManager:OutdoorAirReset,
- CoolSys1 Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- 8.89, !- Setpoint at Outdoor Low Temperature {C}
- 12.78, !- Outdoor Low Temperature {C}
- 6.7, !- Setpoint at Outdoor High Temperature {C}
- 21.11, !- Outdoor High Temperature {C}
- CoolSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name
-
-
- SetpointManager:Scheduled,
- TowerWaterSystem Loop Setpoint Manager, !- Name
- Temperature, !- Control Variable
- Tower-Loop-Temp-Schedule,!- Schedule Name
- TowerWaterSys Supply Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- VAV_ER SAT setpoint, !- Name
- Temperature, !- Control Variable
- VAV_SAT_SCH, !- Schedule Name
- VAV_ER Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- VAV_OR SAT setpoint, !- Name
- Temperature, !- Control Variable
- VAV_SAT_SCH, !- Schedule Name
- VAV_OR Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- VAV_ICU SAT setpoint, !- Name
- Temperature, !- Control Variable
- VAV_SAT_SCH, !- Schedule Name
- VAV_ICU Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- VAV_PATRMS SAT setpoint, !- Name
- Temperature, !- Control Variable
- VAV_SAT_SCH, !- Schedule Name
- VAV_PATRMS Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- VAV_LABS SAT setpoint, !- Name
- Temperature, !- Control Variable
- VAV_SAT_SCH, !- Schedule Name
- VAV_LABS Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:SINGLEZONE:HEATING AND COOLING ===========
-
- SetpointManager:SingleZone:Heating,
- CAV_KITCHEN SAT setpoint - Htg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- Kitchen_Flr_5, !- Control Zone Name
- Kitchen_Flr_5 Air Node, !- Zone Node Name
- Kitchen_Flr_5 Inlet Node, !- Zone Inlet Node Name
- Kitchen_Flr_5 Inlet Nodes; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- CAV_KITCHEN SAT setpoint - Coil Htg, !- Name
- Temperature, !- Control Variable
- Kitchen_Flr_5 Inlet Nodes, !- Reference Setpoint Node Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Fan Inlet Node Name
- CAV_KITCHEN Supply Equipment Outlet Node, !- Fan Outlet Node Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:SingleZone:Cooling,
- CAV_KITCHEN SAT setpoint - Clg, !- Name
- Temperature, !- Control Variable
- 12.8, !- Minimum Supply Air Temperature {C}
- 40.0, !- Maximum Supply Air Temperature {C}
- Kitchen_Flr_5, !- Control Zone Name
- Kitchen_Flr_5 Air Node, !- Zone Node Name
- Kitchen_Flr_5 Inlet Node, !- Zone Inlet Node Name
- CAV_KITCHEN Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- CAV_KITCHEN SAT setpoint - Coil Clg, !- Name
- Temperature, !- Control Variable
- CAV_KITCHEN Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Fan Inlet Node Name
- CAV_KITCHEN Supply Equipment Outlet Node, !- Fan Outlet Node Name
- CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode; !- Setpoint Node or NodeList Name
-
-
- SetpointManager:Scheduled,
- Heat Recovery Chiller Setpoint, !- Name
- Temperature, !- Control Variable
- Heat Recovery Chiller Setpoint, !- Schedule Name
- Heat Recovery Chiller HR Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:Scheduled,
- Dummy Water Heater Setpoint, !- Name
- Temperature, !- Control Variable
- Dummy Water Heater Setpoint, !- Schedule Name
- Heat Recovery Supply Outlet Node; !- Setpoint Node or NodeList Name
-
-
-
-!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:OUTDOORAIRRESET ===========
-
- SetpointManager:OutdoorAirReset,
- VAV_1 Supply Air Temperature Manager, !- Name
- Temperature, !- Control Variable
- 15.6, !- Setpoint at Outdoor Low Temperature {C}
- 10, !- Outdoor Low Temperature {C}
- 12.8, !- Setpoint at Outdoor High Temperature {C}
- 21.1, !- Outdoor High Temperature {C}
- VAV_1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:OutdoorAirReset,
- VAV_2 Supply Air Temperature Manager, !- Name
- Temperature, !- Control Variable
- 15.6, !- Setpoint at Outdoor Low Temperature {C}
- 10, !- Outdoor Low Temperature {C}
- 12.8, !- Setpoint at Outdoor High Temperature {C}
- 21.1, !- Outdoor High Temperature {C}
- VAV_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
-
- SetpointManager:MixedAir,
- VAV_PATRMS_ExtraElecHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_PATRMS_ExtraWaterHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ER_ExtraElecHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name
- VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ER_ExtraWaterHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name
- VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_OR_ExtraElecHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name
- VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_OR_ExtraWaterHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name
- VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ICU_ExtraElecHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ICU_ExtraWaterHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_LABS_ExtraElecHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_LABS_ExtraWaterHeatC Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode; !- Setpoint Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SINGLEZONE:HUMIDITY:MINIMUM ===========
-
-
- SetpointManager:MultiZone:Humidity:Minimum,
- VAV_ER Humidifier HUMRAT setpoint, !- Name
- VAV_ER, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Minimum,
- VAV_OR Humidifier HUMRAT setpoint, !- Name
- VAV_OR, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Minimum,
- VAV_ICU Humidifier HUMRAT setpoint, !- Name
- VAV_ICU, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Minimum,
- VAV_PATRMS Humidifier HUMRAT setpoint, !- Name
- VAV_PATRMS, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Minimum,
- VAV_LABS Humidifier HUMRAT setpoint, !- Name
- VAV_LABS, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SINGLEZONE:HUMIDITY:MAXIMUM ===========
-
- SetpointManager:MultiZone:Humidity:Maximum,
- VAV_ER_CoolC HUMRAT setpoint, !- Name
- VAV_ER, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_ER_CoolC-VAV_ER_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Maximum,
- VAV_OR_CoolC HUMRAT setpoint, !- Name
- VAV_OR, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_OR_CoolC-VAV_OR_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Maximum,
- VAV_ICU_CoolC HUMRAT setpoint, !- Name
- VAV_ICU, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_ICU_CoolC-VAV_ICU_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Maximum,
- VAV_PATRMS_CoolC HUMRAT setpoint, !- Name
- VAV_PATRMS, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MultiZone:Humidity:Maximum,
- VAV_LABS_CoolC HUMRAT setpoint, !- Name
- VAV_LABS, !- HVAC Air Loop Name
- , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_LABS_CoolC-VAV_LABS_HeatCNode; !- Setpoint Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:MIXEDAIR ===========
-
- SetpointManager:MixedAir,
- VAV_1_CoolC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name
- VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_1_CoolC-VAV_1_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_1_HeatC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name
- VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_1_HeatC-VAV_1_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_1_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name
- VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_1_OA-VAV_1_CoolCNode;!- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ER_CoolC SAT Manager,!- Name
- Temperature, !- Control Variable
- VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name
- VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ER_CoolC-VAV_ER_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ER_HeatC SAT Manager,!- Name
- Temperature, !- Control Variable
- VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name
- VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ER_HeatC-VAV_ER_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ER_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name
- VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ER_OA-VAV_ER HumidifierNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_OR_CoolC SAT Manager,!- Name
- Temperature, !- Control Variable
- VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name
- VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_OR_CoolC-VAV_OR_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_OR_HeatC SAT Manager,!- Name
- Temperature, !- Control Variable
- VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name
- VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_OR_HeatC-VAV_OR_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_OR_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name
- VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_OR_OA-VAV_OR HumidifierNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ICU_CoolC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ICU_CoolC-VAV_ICU_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ICU_HeatC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_ICU_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_ICU_OA-VAV_ICU HumidifierNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_PATRMS_CoolC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_PATRMS_HeatC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_PATRMS_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_2_CoolC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name
- VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_2_CoolC-VAV_2_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_2_HeatC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name
- VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_2_HeatC-VAV_2_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_2_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name
- VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_2_OA-VAV_2_CoolCNode;!- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_LABS_CoolC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_LABS_CoolC-VAV_LABS_HeatCNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_LABS_HeatC SAT Manager, !- Name
- Temperature, !- Control Variable
- VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- VAV_LABS_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name
- VAV_LABS_OA-VAV_LABS HumidifierNode; !- Setpoint Node or NodeList Name
-
- SetpointManager:MixedAir,
- CAV_KITCHEN_OAMixed Air Temp Manager, !- Name
- Temperature, !- Control Variable
- CAV_KITCHEN Supply Equipment Outlet Node, !- Reference Setpoint Node Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Fan Inlet Node Name
- CAV_KITCHEN Supply Equipment Outlet Node, !- Fan Outlet Node Name
- CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode; !- Setpoint Node or NodeList Name
-
-
- SetpointManager:OutdoorAirPretreat,
- ICU Heat Exhchanger Supply Air Temp Manager, !- Name
- Temperature, !- Control Variable
- -99, !- Minimum Setpoint Temperature {C}
- 99, !- Maximum Setpoint Temperature {C}
- 0.00001, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- 1.0, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Reference Setpoint Node Name
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Mixed Air Stream Node Name
- VAV_ICU_OAInlet Node, !- Outdoor Air Stream Node Name
- VAV_ICU Supply Equipment Inlet Node, !- Return Air Stream Node Name
- ICU Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name
-
-
-
- SetpointManager:OutdoorAirPretreat,
- PATRMS Heat Exhchanger Supply Air Temp Manager, !- Name
- Temperature, !- Control Variable
- -99, !- Minimum Setpoint Temperature {C}
- 99, !- Maximum Setpoint Temperature {C}
- 0.00001, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- 1.0, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Reference Setpoint Node Name
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Mixed Air Stream Node Name
- VAV_PATRMS_OAInlet Node, !- Outdoor Air Stream Node Name
- VAV_PATRMS Supply Equipment Inlet Node, !- Return Air Stream Node Name
- PATRMS Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name
-
-
-
- SetpointManager:OutdoorAirPretreat,
- VAV_1 Heat Exhchanger Supply Air Temp Manager, !- Name
- Temperature, !- Control Variable
- -99, !- Minimum Setpoint Temperature {C}
- 99, !- Maximum Setpoint Temperature {C}
- 0.00001, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir}
- 1.0, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir}
- VAV_1_OA-VAV_1_CoolCNode,!- Reference Setpoint Node Name
- VAV_1_OA-VAV_1_CoolCNode,!- Mixed Air Stream Node Name
- VAV_1_OAInlet Node, !- Outdoor Air Stream Node Name
- VAV_1 Supply Equipment Inlet Node, !- Return Air Stream Node Name
- VAV_1 Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name
-
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLER:WATERCOIL ===========
-
- Controller:WaterCoil,
- VAV_PATRMS_ExtraWaterHeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Sensor Node Name
- VAV_PATRMS_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_ER_ExtraWaterHeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Sensor Node Name
- VAV_ER_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_OR_ExtraWaterHeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Sensor Node Name
- VAV_OR_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_ICU_ExtraWaterHeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Sensor Node Name
- VAV_ICU_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_LABS_ExtraWaterHeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Sensor Node Name
- VAV_LABS_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_1_CoolC_Controller, !- Name
- Temperature, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_1_CoolC-VAV_1_HeatCNode, !- Sensor Node Name
- VAV_1_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_1_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_1_HeatC-VAV_1_FanNode, !- Sensor Node Name
- VAV_1_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_ER_CoolC_Controller, !- Name
- TemperatureAndHumidityRatio, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_ER_CoolC-VAV_ER_HeatCNode, !- Sensor Node Name
- VAV_ER_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_ER_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_ER_HeatC-VAV_ER_FanNode, !- Sensor Node Name
- VAV_ER_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_OR_CoolC_Controller, !- Name
- TemperatureAndHumidityRatio, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_OR_CoolC-VAV_OR_HeatCNode, !- Sensor Node Name
- VAV_OR_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_OR_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_OR_HeatC-VAV_OR_FanNode, !- Sensor Node Name
- VAV_OR_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_ICU_CoolC_Controller,!- Name
- TemperatureAndHumidityRatio, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Sensor Node Name
- VAV_ICU_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_ICU_HeatC_Controller,!- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Sensor Node Name
- VAV_ICU_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_PATRMS_CoolC_Controller, !- Name
- TemperatureAndHumidityRatio, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Sensor Node Name
- VAV_PATRMS_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_PATRMS_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Sensor Node Name
- VAV_PATRMS_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_2_CoolC_Controller, !- Name
- Temperature, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_2_CoolC-VAV_2_HeatCNode, !- Sensor Node Name
- VAV_2_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_2_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_2_HeatC-VAV_2_FanNode, !- Sensor Node Name
- VAV_2_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_LABS_CoolC_Controller, !- Name
- TemperatureAndHumidityRatio, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Sensor Node Name
- VAV_LABS_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- VAV_LABS_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Sensor Node Name
- VAV_LABS_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- CAV_KITCHEN_CoolC_Controller, !- Name
- Temperature, !- Control Variable
- Reverse, !- Action
- Flow, !- Actuator Variable
- CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Sensor Node Name
- CAV_KITCHEN_CoolCDemand Inlet Node, !- Actuator Node Name
- , !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
- Controller:WaterCoil,
- CAV_KITCHEN_HeatC_Controller, !- Name
- Temperature, !- Control Variable
- Normal, !- Action
- Flow, !- Actuator Variable
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Sensor Node Name
- CAV_KITCHEN_HeatCDemand Inlet Node, !- Actuator Node Name
- 0.0001, !- Controller Convergence Tolerance {deltaC}
- AUTOSIZE, !- Maximum Actuated Flow {m3/s}
- 0.0; !- Minimum Actuated Flow {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLER:OUTDOORAIR ===========
-
- Controller:OutdoorAir,
- VAV_1_OA_Controller, !- Name
- VAV_1_OARelief Node, !- Relief Air Outlet Node Name
- VAV_1 Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_1_OA-VAV_1_CoolCNode, !- Mixed Air Node Name
- VAV_1_OAInlet Node, !- Actuator Node Name
- 0, !- Minimum Outdoor Air Flow Rate {m3/s} !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- DifferentialDryBulb, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
-, !- Economizer Maximum Limit Dry-Bulb Temperature {C} !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- BLDG_OA_FRAC_SCH, !- Minimum Fraction of Outdoor Air Schedule Name
- VAV_1 Max OA Fraction, !- Maximum Fraction of Outdoor Air Schedule Name
-
- VAV_1_DCV, !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type
-!- Mechanical Ventilation Controller Name
-
-
-
- Controller:OutdoorAir,
- VAV_ER_OA_Controller, !- Name
- VAV_ER_OARelief Node, !- Relief Air Outlet Node Name
- VAV_ER Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_ER_OA-VAV_ER HumidifierNode, !- Mixed Air Node Name
- VAV_ER_OAInlet Node, !- Actuator Node Name
- AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- VAV_ER_OAminOAFracSchedule; !- Minimum Fraction of Outdoor Air Schedule Name
-
-
-
-
- Controller:OutdoorAir,
- VAV_OR_OA_Controller, !- Name
- VAV_OR_OARelief Node, !- Relief Air Outlet Node Name
- VAV_OR Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_OR_OA-VAV_OR HumidifierNode, !- Mixed Air Node Name
- VAV_OR_OAInlet Node, !- Actuator Node Name
- AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- VAV_OR_OAminOAFracSchedule; !- Minimum Fraction of Outdoor Air Schedule Name
-
-
-
-
- Controller:OutdoorAir,
- VAV_ICU_OA_Controller, !- Name
- VAV_ICU_OARelief Node, !- Relief Air Outlet Node Name
- VAV_ICU Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Mixed Air Node Name
- VAV_ICU_OAInlet Node, !- Actuator Node Name
- AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- VAV_ICU_OAminOAFracSchedule, !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type
-
-
-
-
- Controller:OutdoorAir,
- VAV_PATRMS_OA_Controller, !- Name
- VAV_PATRMS_OARelief Node, !- Relief Air Outlet Node Name
- VAV_PATRMS Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Mixed Air Node Name
- VAV_PATRMS_OAInlet Node, !- Actuator Node Name
- AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- VAV_PATRMS_OAminOAFracSchedule, !- Minimum Fraction of Outdoor Air Schedule Name
- , !- Maximum Fraction of Outdoor Air Schedule Name
- , !- Mechanical Ventilation Controller Name
- , !- Time of Day Economizer Control Schedule Name
- , !- High Humidity Control
- , !- Humidistat Control Zone Name
- , !- High Humidity Outdoor Air Flow Ratio
- , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
- BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type
-
-
-
-
- Controller:OutdoorAir,
- VAV_2_OA_Controller, !- Name
- VAV_2_OARelief Node, !- Relief Air Outlet Node Name
- VAV_2 Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_2_OA-VAV_2_CoolCNode, !- Mixed Air Node Name
- VAV_2_OAInlet Node, !- Actuator Node Name
- 0, !- Minimum Outdoor Air Flow Rate {m3/s} !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- DifferentialDryBulb, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
-, !- Economizer Maximum Limit Dry-Bulb Temperature {C} !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- BLDG_OA_FRAC_SCH, !- Minimum Fraction of Outdoor Air Schedule Name
- VAV_2 Max OA Fraction, !- Maximum Fraction of Outdoor Air Schedule Name
-
- VAV_2_DCV; !- Mechanical Ventilation Controller Name
-
-
-
-
- Controller:OutdoorAir,
- VAV_LABS_OA_Controller, !- Name
- VAV_LABS_OARelief Node, !- Relief Air Outlet Node Name
- VAV_LABS Supply Equipment Inlet Node, !- Return Air Node Name
- VAV_LABS_OA-VAV_LABS HumidifierNode, !- Mixed Air Node Name
- VAV_LABS_OAInlet Node, !- Actuator Node Name
- AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- NoEconomizer, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
- , !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- MinOA_Sched, !- Minimum Outdoor Air Schedule Name
- VAV_LABS_OAminOAFracSchedule; !- Minimum Fraction of Outdoor Air Schedule Name
-
-
-
-
- Controller:OutdoorAir,
- CAV_KITCHEN_OA_Controller, !- Name
- CAV_KITCHEN_OARelief Node, !- Relief Air Outlet Node Name
- CAV_KITCHEN Supply Equipment Inlet Node, !- Return Air Node Name
- CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Mixed Air Node Name
- CAV_KITCHEN_OAInlet Node, !- Actuator Node Name
- AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}
- AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}
- DifferentialDryBulb, !- Economizer Control Type
- ModulateFlow, !- Economizer Control Action Type
-, !- Economizer Maximum Limit Dry-Bulb Temperature {C} !- Economizer Maximum Limit Dry-Bulb Temperature {C}
- , !- Economizer Maximum Limit Enthalpy {J/kg}
- , !- Economizer Maximum Limit Dewpoint Temperature {C}
- , !- Electronic Enthalpy Limit Curve Name
- , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
- LockoutWithHeating, !- Lockout Type, !- Lockout Type
- FixedMinimum, !- Minimum Limit Type
- Kitchen_Exhaust_SCH; !- Minimum Outdoor Air Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: CONTROLLED ZONE EQUIP CONFIGURATION ===========
-
- ZoneHVAC:EquipmentConnections,
- Basement, !- Zone Name
- Basement Equipment, !- Zone Conditioning Equipment List Name
- Basement Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Basement Air Node, !- Zone Air Node Name
- Basement Return Air Node;!- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- ER_Exam1_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- ER_Exam1_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ER_Exam1_Mult4_Flr_1 Air Node, !- Zone Air Node Name
- ER_Exam1_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ER_Trauma1_Flr_1, !- Zone Name
- ER_Trauma1_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- ER_Trauma1_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ER_Trauma1_Flr_1 Air Node, !- Zone Air Node Name
- ER_Trauma1_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- ER_Exam3_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- ER_Exam3_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ER_Exam3_Mult4_Flr_1 Air Node, !- Zone Air Node Name
- ER_Exam3_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ER_Trauma2_Flr_1, !- Zone Name
- ER_Trauma2_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- ER_Trauma2_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ER_Trauma2_Flr_1 Air Node, !- Zone Air Node Name
- ER_Trauma2_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ER_Triage_Mult4_Flr_1, !- Zone Name
- ER_Triage_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- ER_Triage_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ER_Triage_Mult4_Flr_1 Air Node, !- Zone Air Node Name
- ER_Triage_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Office1_Mult4_Flr_1, !- Zone Name
- Office1_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- Office1_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Office1_Mult4_Flr_1 Air Node, !- Zone Air Node Name
- Office1_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Lobby_Records_Flr_1, !- Zone Name
- Lobby_Records_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- Lobby_Records_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Lobby_Records_Flr_1 Air Node, !- Zone Air Node Name
- Lobby_Records_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_Flr_1, !- Zone Name
- Corridor_Flr_1 Equipment,!- Zone Conditioning Equipment List Name
- Corridor_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Corridor_Flr_1 Air Node, !- Zone Air Node Name
- Corridor_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ER_NurseStn_Lobby_Flr_1, !- Zone Name
- ER_NurseStn_Lobby_Flr_1 Equipment, !- Zone Conditioning Equipment List Name
- ER_NurseStn_Lobby_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ER_NurseStn_Lobby_Flr_1 Air Node, !- Zone Air Node Name
- ER_NurseStn_Lobby_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- OR1_Flr_2, !- Zone Name
- OR1_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- OR1_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- OR1_Flr_2 Air Node, !- Zone Air Node Name
- OR1_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- OR2_Mult5_Flr_2, !- Zone Name
- OR2_Mult5_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- OR2_Mult5_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- OR2_Mult5_Flr_2 Air Node,!- Zone Air Node Name
- OR2_Mult5_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- OR3_Flr_2, !- Zone Name
- OR3_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- OR3_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- OR3_Flr_2 Air Node, !- Zone Air Node Name
- OR3_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- OR4_Flr_2, !- Zone Name
- OR4_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- OR4_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- OR4_Flr_2 Air Node, !- Zone Air Node Name
- OR4_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- IC_PatRoom1_Mult5_Flr_2, !- Zone Name
- IC_PatRoom1_Mult5_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- IC_PatRoom1_Mult5_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- IC_PatRoom1_Mult5_Flr_2 Air Node, !- Zone Air Node Name
- IC_PatRoom1_Mult5_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- IC_PatRoom2_Flr_2, !- Zone Name
- IC_PatRoom2_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- IC_PatRoom2_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- IC_PatRoom2_Flr_2 Air Node, !- Zone Air Node Name
- IC_PatRoom2_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- IC_PatRoom3_Mult6_Flr_2, !- Zone Name
- IC_PatRoom3_Mult6_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- IC_PatRoom3_Mult6_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- IC_PatRoom3_Mult6_Flr_2 Air Node, !- Zone Air Node Name
- IC_PatRoom3_Mult6_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ICU_Flr_2, !- Zone Name
- ICU_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- ICU_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ICU_Flr_2 Air Node, !- Zone Air Node Name
- ICU_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- ICU_NurseStn_Lobby_Flr_2,!- Zone Name
- ICU_NurseStn_Lobby_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- ICU_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- ICU_NurseStn_Lobby_Flr_2 Air Node, !- Zone Air Node Name
- ICU_NurseStn_Lobby_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_Flr_2, !- Zone Name
- Corridor_Flr_2 Equipment,!- Zone Conditioning Equipment List Name
- Corridor_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Corridor_Flr_2 Air Node, !- Zone Air Node Name
- Corridor_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- OR_NurseStn_Lobby_Flr_2, !- Zone Name
- OR_NurseStn_Lobby_Flr_2 Equipment, !- Zone Conditioning Equipment List Name
- OR_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- OR_NurseStn_Lobby_Flr_2 Air Node, !- Zone Air Node Name
- OR_NurseStn_Lobby_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom1_Mult10_Flr_3, !- Zone Name
- PatRoom1_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom1_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom1_Mult10_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom1_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom2_Flr_3, !- Zone Name
- PatRoom2_Flr_3 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom2_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom2_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom2_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom3_Mult10_Flr_3, !- Zone Name
- PatRoom3_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom3_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom3_Mult10_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom3_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom4_Flr_3, !- Zone Name
- PatRoom4_Flr_3 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom4_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom4_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom4_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom5_Mult10_Flr_3, !- Zone Name
- PatRoom5_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom5_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom5_Mult10_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom5_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PhysTherapy_Flr_3, !- Zone Name
- PhysTherapy_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- PhysTherapy_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PhysTherapy_Flr_3 Air Node, !- Zone Air Node Name
- PhysTherapy_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom6_Flr_3, !- Zone Name
- PatRoom6_Flr_3 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom6_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom6_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom6_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom7_Mult10_Flr_3, !- Zone Name
- PatRoom7_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom7_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom7_Mult10_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom7_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom8_Flr_3, !- Zone Name
- PatRoom8_Flr_3 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom8_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom8_Flr_3 Air Node, !- Zone Air Node Name
- PatRoom8_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- NurseStn_Lobby_Flr_3, !- Zone Name
- NurseStn_Lobby_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- NurseStn_Lobby_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- NurseStn_Lobby_Flr_3 Air Node, !- Zone Air Node Name
- NurseStn_Lobby_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Lab_Flr_3, !- Zone Name
- Lab_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- Lab_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Lab_Flr_3 Air Node, !- Zone Air Node Name
- Lab_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_SE_Flr_3, !- Zone Name
- Corridor_SE_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- Corridor_SE_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Corridor_SE_Flr_3 Air Node, !- Zone Air Node Name
- Corridor_SE_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_NW_Flr_3, !- Zone Name
- Corridor_NW_Flr_3 Equipment, !- Zone Conditioning Equipment List Name
- Corridor_NW_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Corridor_NW_Flr_3 Air Node, !- Zone Air Node Name
- Corridor_NW_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom1_Mult10_Flr_4, !- Zone Name
- PatRoom1_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom1_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom1_Mult10_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom1_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom2_Flr_4, !- Zone Name
- PatRoom2_Flr_4 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom2_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom2_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom2_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom3_Mult10_Flr_4, !- Zone Name
- PatRoom3_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom3_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom3_Mult10_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom3_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom4_Flr_4, !- Zone Name
- PatRoom4_Flr_4 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom4_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom4_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom4_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom5_Mult10_Flr_4, !- Zone Name
- PatRoom5_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom5_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom5_Mult10_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom5_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Radiology_Flr_4, !- Zone Name
- Radiology_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- Radiology_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Radiology_Flr_4 Air Node,!- Zone Air Node Name
- Radiology_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom6_Flr_4, !- Zone Name
- PatRoom6_Flr_4 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom6_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom6_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom6_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom7_Mult10_Flr_4, !- Zone Name
- PatRoom7_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- PatRoom7_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom7_Mult10_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom7_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- PatRoom8_Flr_4, !- Zone Name
- PatRoom8_Flr_4 Equipment,!- Zone Conditioning Equipment List Name
- PatRoom8_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- PatRoom8_Flr_4 Air Node, !- Zone Air Node Name
- PatRoom8_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- NurseStn_Lobby_Flr_4, !- Zone Name
- NurseStn_Lobby_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- NurseStn_Lobby_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- NurseStn_Lobby_Flr_4 Air Node, !- Zone Air Node Name
- NurseStn_Lobby_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Lab_Flr_4, !- Zone Name
- Lab_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- Lab_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Lab_Flr_4 Air Node, !- Zone Air Node Name
- Lab_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_SE_Flr_4, !- Zone Name
- Corridor_SE_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- Corridor_SE_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Corridor_SE_Flr_4 Air Node, !- Zone Air Node Name
- Corridor_SE_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_NW_Flr_4, !- Zone Name
- Corridor_NW_Flr_4 Equipment, !- Zone Conditioning Equipment List Name
- Corridor_NW_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Corridor_NW_Flr_4 Air Node, !- Zone Air Node Name
- Corridor_NW_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Dining_Flr_5, !- Zone Name
- Dining_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- Dining_Flr_5 Inlet Nodes,!- Zone Air Inlet Node or NodeList Name
- Dining_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- Dining_Flr_5 Air Node, !- Zone Air Node Name
- Dining_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- NurseStn_Lobby_Flr_5, !- Zone Name
- NurseStn_Lobby_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- NurseStn_Lobby_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- NurseStn_Lobby_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- NurseStn_Lobby_Flr_5 Air Node, !- Zone Air Node Name
- NurseStn_Lobby_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Kitchen_Flr_5, !- Zone Name
- Kitchen_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- Kitchen_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- Kitchen_Flr_5 Exhaust Nodes, !- Zone Air Exhaust Node or NodeList Name
- Kitchen_Flr_5 Air Node, !- Zone Air Node Name
- Kitchen_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Office1_Flr_5, !- Zone Name
- Office1_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- Office1_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- Office1_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- Office1_Flr_5 Air Node, !- Zone Air Node Name
- Office1_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Office2_Mult5_Flr_5, !- Zone Name
- Office2_Mult5_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- Office2_Mult5_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- Office2_Mult5_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- Office2_Mult5_Flr_5 Air Node, !- Zone Air Node Name
- Office2_Mult5_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Office3_Flr_5, !- Zone Name
- Office3_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- Office3_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- Office3_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- Office3_Flr_5 Air Node, !- Zone Air Node Name
- Office3_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Office4_Mult6_Flr_5, !- Zone Name
- Office4_Mult6_Flr_5 Equipment, !- Zone Conditioning Equipment List Name
- Office4_Mult6_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- Office4_Mult6_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- Office4_Mult6_Flr_5 Air Node, !- Zone Air Node Name
- Office4_Mult6_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- ZoneHVAC:EquipmentConnections,
- Corridor_Flr_5, !- Zone Name
- Corridor_Flr_5 Equipment,!- Zone Conditioning Equipment List Name
- Corridor_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name
- Corridor_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name
- Corridor_Flr_5 Air Node, !- Zone Air Node Name
- Corridor_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name
-
-!- =========== ALL OBJECTS IN CLASS: ZONE EQUIPMENT LIST ===========
-
- ZoneHVAC:EquipmentList,
- Basement Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Basement VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ER_Exam1_Mult4_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ER_Exam1_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ER_Trauma1_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ER_Trauma1_Flr_1 VAV Box,!- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ER_Exam3_Mult4_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ER_Exam3_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ER_Trauma2_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ER_Trauma2_Flr_1 VAV Box,!- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ER_Triage_Mult4_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ER_Triage_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office1_Mult4_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Office1_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Lobby_Records_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Lobby_Records_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_Flr_1 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Corridor_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ER_NurseStn_Lobby_Flr_1 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ER_NurseStn_Lobby_Flr_1 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- OR1_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- OR1_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- OR2_Mult5_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- OR2_Mult5_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- OR3_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- OR3_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- OR4_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- OR4_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- IC_PatRoom1_Mult5_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- IC_PatRoom1_Mult5_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- IC_PatRoom2_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- IC_PatRoom2_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- IC_PatRoom3_Mult6_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- IC_PatRoom3_Mult6_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ICU_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ICU_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- ICU_NurseStn_Lobby_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- ICU_NurseStn_Lobby_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_Flr_2 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Corridor_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- OR_NurseStn_Lobby_Flr_2 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- OR_NurseStn_Lobby_Flr_2 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom1_Mult10_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom1_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom2_Flr_3 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom2_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom3_Mult10_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom3_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom4_Flr_3 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom4_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom5_Mult10_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom5_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PhysTherapy_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PhysTherapy_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom6_Flr_3 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom6_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom7_Mult10_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom7_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom8_Flr_3 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom8_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- NurseStn_Lobby_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- NurseStn_Lobby_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Lab_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Lab_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_SE_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Corridor_SE_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_NW_Flr_3 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Corridor_NW_Flr_3 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom1_Mult10_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom1_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom2_Flr_4 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom2_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom3_Mult10_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom3_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom4_Flr_4 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom4_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom5_Mult10_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom5_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Radiology_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Radiology_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom6_Flr_4 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom6_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom7_Mult10_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom7_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- PatRoom8_Flr_4 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- PatRoom8_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- NurseStn_Lobby_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- NurseStn_Lobby_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Lab_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Lab_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_SE_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Corridor_SE_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_NW_Flr_4 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Corridor_NW_Flr_4 VAV Box, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1; !- Zone Equipment 1 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Dining_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Dining_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- Dining_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- NurseStn_Lobby_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- NurseStn_Lobby_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- NurseStn_Lobby_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Kitchen_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Kitchen_Flr_5 Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 2 Object Type
- Kitchen_Flr_5 CAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office1_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Office1_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- Office1_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office2_Mult5_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Office2_Mult5_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- Office2_Mult5_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office3_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Office3_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- Office3_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Office4_Mult6_Flr_5 Equipment, !- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Office4_Mult6_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- Office4_Mult6_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
- ZoneHVAC:EquipmentList,
- Corridor_Flr_5 Equipment,!- Name
- SequentialLoad, !- Load Distribution Scheme
- Fan:ZoneExhaust, !- Zone Equipment 1 Object Type
- Corridor_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type
- Corridor_Flr_5 VAV Box, !- Zone Equipment 2 Name
- 2, !- Zone Equipment 2 Cooling Sequence
- 2; !- Zone Equipment 2 Heating or No-Load Sequence
-
-!- =========== ALL OBJECTS IN CLASS: AIR DISTRIBUTION UNIT ===========
-
- ZoneHVAC:AirDistributionUnit,
- Basement VAV Box, !- Name
- Basement VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Basement VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ER_Exam1_Mult4_Flr_1 VAV Box, !- Name
- ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ER_Exam1_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ER_Trauma1_Flr_1 VAV Box,!- Name
- ER_Trauma1_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ER_Trauma1_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ER_Exam3_Mult4_Flr_1 VAV Box, !- Name
- ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ER_Exam3_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ER_Trauma2_Flr_1 VAV Box,!- Name
- ER_Trauma2_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ER_Trauma2_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ER_Triage_Mult4_Flr_1 VAV Box, !- Name
- ER_Triage_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ER_Triage_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Office1_Mult4_Flr_1 VAV Box, !- Name
- Office1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Office1_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Lobby_Records_Flr_1 VAV Box, !- Name
- Lobby_Records_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Lobby_Records_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_Flr_1 VAV Box, !- Name
- Corridor_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ER_NurseStn_Lobby_Flr_1 VAV Box, !- Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ER_NurseStn_Lobby_Flr_1 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- OR1_Flr_2 VAV Box, !- Name
- OR1_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- OR1_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- OR2_Mult5_Flr_2 VAV Box, !- Name
- OR2_Mult5_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- OR2_Mult5_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- OR3_Flr_2 VAV Box, !- Name
- OR3_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- OR3_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- OR4_Flr_2 VAV Box, !- Name
- OR4_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- OR4_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- IC_PatRoom1_Mult5_Flr_2 VAV Box, !- Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- IC_PatRoom1_Mult5_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- IC_PatRoom2_Flr_2 VAV Box, !- Name
- IC_PatRoom2_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- IC_PatRoom2_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- IC_PatRoom3_Mult6_Flr_2 VAV Box, !- Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- IC_PatRoom3_Mult6_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ICU_Flr_2 VAV Box, !- Name
- ICU_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ICU_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- ICU_NurseStn_Lobby_Flr_2 VAV Box, !- Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- ICU_NurseStn_Lobby_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_Flr_2 VAV Box, !- Name
- Corridor_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- OR_NurseStn_Lobby_Flr_2 VAV Box, !- Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- OR_NurseStn_Lobby_Flr_2 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom1_Mult10_Flr_3 VAV Box, !- Name
- PatRoom1_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom1_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom2_Flr_3 VAV Box, !- Name
- PatRoom2_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom2_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom3_Mult10_Flr_3 VAV Box, !- Name
- PatRoom3_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom3_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom4_Flr_3 VAV Box, !- Name
- PatRoom4_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom4_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom5_Mult10_Flr_3 VAV Box, !- Name
- PatRoom5_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom5_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PhysTherapy_Flr_3 VAV Box, !- Name
- PhysTherapy_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PhysTherapy_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom6_Flr_3 VAV Box, !- Name
- PatRoom6_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom6_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom7_Mult10_Flr_3 VAV Box, !- Name
- PatRoom7_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom7_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom8_Flr_3 VAV Box, !- Name
- PatRoom8_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom8_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- NurseStn_Lobby_Flr_3 VAV Box, !- Name
- NurseStn_Lobby_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- NurseStn_Lobby_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Lab_Flr_3 VAV Box, !- Name
- Lab_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Lab_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_SE_Flr_3 VAV Box, !- Name
- Corridor_SE_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_SE_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_NW_Flr_3 VAV Box, !- Name
- Corridor_NW_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_NW_Flr_3 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom1_Mult10_Flr_4 VAV Box, !- Name
- PatRoom1_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom1_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom2_Flr_4 VAV Box, !- Name
- PatRoom2_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom2_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom3_Mult10_Flr_4 VAV Box, !- Name
- PatRoom3_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom3_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom4_Flr_4 VAV Box, !- Name
- PatRoom4_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom4_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom5_Mult10_Flr_4 VAV Box, !- Name
- PatRoom5_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom5_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Radiology_Flr_4 VAV Box, !- Name
- Radiology_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Radiology_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom6_Flr_4 VAV Box, !- Name
- PatRoom6_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom6_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom7_Mult10_Flr_4 VAV Box, !- Name
- PatRoom7_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom7_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- PatRoom8_Flr_4 VAV Box, !- Name
- PatRoom8_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- PatRoom8_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- NurseStn_Lobby_Flr_4 VAV Box, !- Name
- NurseStn_Lobby_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- NurseStn_Lobby_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Lab_Flr_4 VAV Box, !- Name
- Lab_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Lab_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_SE_Flr_4 VAV Box, !- Name
- Corridor_SE_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_SE_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_NW_Flr_4 VAV Box, !- Name
- Corridor_NW_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_NW_Flr_4 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Dining_Flr_5 VAV Box, !- Name
- Dining_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Dining_Flr_5 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- NurseStn_Lobby_Flr_5 VAV Box, !- Name
- NurseStn_Lobby_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- NurseStn_Lobby_Flr_5 VAV Box Component; !- Air Terminal Name
-
-
-
- ZoneHVAC:AirDistributionUnit,
- Office1_Flr_5 VAV Box, !- Name
- Office1_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Office1_Flr_5 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Office2_Mult5_Flr_5 VAV Box, !- Name
- Office2_Mult5_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Office2_Mult5_Flr_5 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Office3_Flr_5 VAV Box, !- Name
- Office3_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Office3_Flr_5 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Office4_Mult6_Flr_5 VAV Box, !- Name
- Office4_Mult6_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Office4_Mult6_Flr_5 VAV Box Component; !- Air Terminal Name
-
- ZoneHVAC:AirDistributionUnit,
- Corridor_Flr_5 VAV Box, !- Name
- Corridor_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type
- Corridor_Flr_5 VAV Box Component; !- Air Terminal Name
-
-!- =========== ALL OBJECTS IN CLASS: COMPRESSOR RACK:REFRIGERATED CASE ===========
-
- Refrigeration:CompressorRack,
- RACK1, !- Name
- OUTDOORS, !- Heat Rejection Location
- 2.3, !- Design Compressor Rack COP {W/W}
- RACK1_RackCOPfTCurve, !- Compressor Rack COP Function of Temperature Curve Name
- 1000.0000, !- Design Condenser Fan Power {W}
- RACK1_RackCondFanCurve2, !- Condenser Fan Power Function of Temperature Curve Name
- AirCooled, !- Condenser Type
- , !- Water-Cooled Condenser Inlet Node Name
- , !- Water-Cooled Condenser Outlet Node Name
- , !- Water-Cooled Loop Flow Type
- , !- Water-Cooled Condenser Outlet Temperature Schedule Name
- , !- Water-Cooled Condenser Design Flow Rate {m3/s}
- , !- Water-Cooled Condenser Maximum Flow Rate {m3/s}
- , !- Water-Cooled Condenser Maximum Water Outlet Temperature {C}
- , !- Water-Cooled Condenser Minimum Water Inlet Temperature {C}
- , !- Evaporative Condenser Availability Schedule Name
- , !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- , !- Basin Heater Capacity {W/K}
- , !- Basin Heater Setpoint Temperature {C}
- , !- Design Evaporative Condenser Water Pump Power {W}
- , !- Evaporative Water Supply Tank Name
- RACK1_condenserInlet, !- Condenser Air Inlet Node Name
- LowTempRefrigeration, !- End-Use Subcategory
- RACK1CaseList; !- Refrigeration Case Name or WalkIn Name or CaseAndWalkInList Name
-
- Refrigeration:CaseAndWalkInList,
- RACK1CaseList, !- Name
- Kitchen_Flr_5_Case:1_WALKINFREEZER; !- Case or WalkIn 1 Name
-
- Refrigeration:CompressorRack,
- RACK2, !- Name
- OUTDOORS, !- Heat Rejection Location
- 6.93, !- Design Compressor Rack COP {W/W}
- RACK2_RackCOPfTCurve, !- Compressor Rack COP Function of Temperature Curve Name
- 1000.0000, !- Design Condenser Fan Power {W}
- , !- Condenser Fan Power Function of Temperature Curve Name
- AirCooled, !- Condenser Type
- , !- Water-Cooled Condenser Inlet Node Name
- , !- Water-Cooled Condenser Outlet Node Name
- , !- Water-Cooled Loop Flow Type
- , !- Water-Cooled Condenser Outlet Temperature Schedule Name
- , !- Water-Cooled Condenser Design Flow Rate {m3/s}
- , !- Water-Cooled Condenser Maximum Flow Rate {m3/s}
- , !- Water-Cooled Condenser Maximum Water Outlet Temperature {C}
- , !- Water-Cooled Condenser Minimum Water Inlet Temperature {C}
- , !- Evaporative Condenser Availability Schedule Name
- , !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- , !- Basin Heater Capacity {W/K}
- , !- Basin Heater Setpoint Temperature {C}
- , !- Design Evaporative Condenser Water Pump Power {W}
- , !- Evaporative Water Supply Tank Name
- RACK2_condenserInlet, !- Condenser Air Inlet Node Name
- MedTempRefrigeration, !- End-Use Subcategory
- RACK2CaseList; !- Refrigeration Case Name or WalkIn Name or CaseAndWalkInList Name
-
- Refrigeration:CaseAndWalkInList,
- RACK2CaseList, !- Name
- Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE; !- Case or WalkIn 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: CASE:REFRIGERATED ===========
-
- Refrigeration:Case,
- Kitchen_Flr_5_Case:1_WALKINFREEZER, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Kitchen_Flr_5, !- Zone Name
- 23.8800, !- Rated Ambient Temperature {C}
- 55.0000, !- Rated Ambient Relative Humidity {percent}
- 734.0000, !- Rated Total Cooling Capacity per Unit Length {W/m}
- 0.1000, !- Rated Latent Heat Ratio
- 0.4000, !- Rated Runtime Fraction
- 10.9800, !- Case Length {m}
- -23.0000, !- Case Operating Temperature {C}
- CaseTemperatureMethod, !- Latent Case Credit Curve Type
- Kitchen_Flr_5_Case:1_WALKINFREEZERSingleShelfHorizontal_LatentEnergyMult, !- Latent Case Credit Curve Name
- 19.71428571, !- Standard Case Fan Power per Unit Length {W/m}
- 19.71428571, !- Operating Case Fan Power per Unit Length {W/m}
- 33.0000, !- Standard Case Lighting Power per Unit Length {W/m}
- , !- Installed Case Lighting Power per Unit Length {W/m}
- walkin_occ_lght_sch, !- Case Lighting Schedule Name
- 1.0000, !- Fraction of Lighting Energy to Case
- 0.0000, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
- 0.0000, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
- NONE, !- Anti-Sweat Heater Control Type
- 0.0, !- Humidity at Zero Anti-Sweat Heater Energy {percent}
- 0.0, !- Case Height {m}
- 0.0000, !- Fraction of Anti-Sweat Heater Energy to Case
- 364.0000, !- Case Defrost Power per Unit Length {W/m}
- ELECTRIC, !- Case Defrost Type
- Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDefrost2aDaySched, !- Case Defrost Schedule Name
- Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDripDown2aDaySched, !- Case Defrost Drip-Down Schedule Name
- , !- Defrost Energy Correction Curve Type
- , !- Defrost Energy Correction Curve Name
- 0.0000, !- Under Case HVAC Return Air Fraction
- Kitchen_Flr_5_Case:1_WALKINFREEZER_WalkInStockingSched, !- Refrigerated Case Restocking Schedule Name
- Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseCreditReduxSched; !- Case Credit Fraction Schedule Name
-
- Refrigeration:Case,
- Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Kitchen_Flr_5, !- Zone Name
- 23.8800, !- Rated Ambient Temperature {C}
- 55.0000, !- Rated Ambient Relative Humidity {percent}
- 886.5000, !- Rated Total Cooling Capacity per Unit Length {W/m}
- 0.0800, !- Rated Latent Heat Ratio
- 0.8500, !- Rated Runtime Fraction
- 8.9300, !- Case Length {m}
- 2.0000, !- Case Operating Temperature {C}
- CaseTemperatureMethod, !- Latent Case Credit Curve Type
- Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASEMultiShelfVertical_LatentEnergyMult, !- Latent Case Credit Curve Name
- 19.14285714, !- Standard Case Fan Power per Unit Length {W/m}
- 19.14285714, !- Operating Case Fan Power per Unit Length {W/m}
- 40.0000, !- Standard Case Lighting Power per Unit Length {W/m}
- , !- Installed Case Lighting Power per Unit Length {W/m}
- walkin_occ_lght_sch, !- Case Lighting Schedule Name
- 1.0000, !- Fraction of Lighting Energy to Case
- 0.0000, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
- 0.0000, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
- NONE, !- Anti-Sweat Heater Control Type
- 0.0, !- Humidity at Zero Anti-Sweat Heater Energy {percent}
- 0.0, !- Case Height {m}
- 0.2000, !- Fraction of Anti-Sweat Heater Energy to Case
- 0.0000, !- Case Defrost Power per Unit Length {W/m}
- NONE, !- Case Defrost Type
- , !- Case Defrost Schedule Name
- , !- Case Defrost Drip-Down Schedule Name
- , !- Defrost Energy Correction Curve Type
- , !- Defrost Energy Correction Curve Name
- 0.0500, !- Under Case HVAC Return Air Fraction
- Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched; !- Refrigerated Case Restocking Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: SINGLE DUCT:UNCONTROLLED ===========
-
- AirTerminal:SingleDuct:Uncontrolled,
- Kitchen_Flr_5 CAV Box, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Kitchen_Flr_5 Inlet Node,!- Zone Supply Air Node Name
- AUTOSIZE; !- Maximum Air Flow Rate {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: SINGLE DUCT:VAV:REHEAT ===========
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ER_Exam1_Mult4_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ER_Exam1_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ER_Exam1_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ER_Trauma1_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ER_Trauma1_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ER_Trauma1_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ER_Trauma1_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ER_Trauma1_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ER_Exam3_Mult4_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ER_Exam3_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ER_Exam3_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ER_Trauma2_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ER_Trauma2_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ER_Trauma2_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ER_Trauma2_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ER_Trauma2_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ER_Triage_Mult4_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ER_Triage_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ER_Triage_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ER_Triage_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ER_Triage_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- OR1_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- OR1_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- OR1_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Scheduled, !- Zone Minimum Air Flow Input Method
- , !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- OR1_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- OR1_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- OR2_Mult5_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- OR2_Mult5_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- OR2_Mult5_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Scheduled, !- Zone Minimum Air Flow Input Method
- , !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- OR2_Mult5_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- OR2_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- OR3_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- OR3_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- OR3_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Scheduled, !- Zone Minimum Air Flow Input Method
- , !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- OR3_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- OR3_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- OR4_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- OR4_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- OR4_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Scheduled, !- Zone Minimum Air Flow Input Method
- , !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- OR4_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- OR4_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- IC_PatRoom1_Mult5_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- IC_PatRoom2_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- IC_PatRoom2_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- IC_PatRoom2_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- IC_PatRoom2_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- IC_PatRoom2_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- IC_PatRoom3_Mult6_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ICU_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ICU_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ICU_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ICU_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ICU_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom1_Mult10_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom1_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom1_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom1_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom1_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom2_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom2_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom2_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom2_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom2_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom3_Mult10_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom3_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom3_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom3_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom3_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom4_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom4_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom4_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom4_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom4_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom5_Mult10_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom5_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom5_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom5_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom5_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom6_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom6_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom6_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom6_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom6_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom7_Mult10_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom7_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom7_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom7_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom7_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom8_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom8_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom8_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom8_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom8_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Lab_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Lab_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Lab_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Lab_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Lab_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom1_Mult10_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom1_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom1_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom1_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom1_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom2_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom2_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom2_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom2_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom2_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom3_Mult10_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom3_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom3_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom3_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom3_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom4_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom4_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom4_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom4_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom4_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom5_Mult10_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom5_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom5_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom5_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom5_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom6_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom6_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom6_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom6_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom6_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom7_Mult10_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom7_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom7_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom7_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom7_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PatRoom8_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PatRoom8_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PatRoom8_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PatRoom8_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PatRoom8_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Lab_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Lab_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Lab_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 1.0000, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Lab_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Lab_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Basement VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Basement VAV Box Damper Node, !- Damper Air Outlet Node Name
- Basement VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.44, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Basement VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Basement VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Office1_Mult4_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Office1_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Office1_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.15, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Office1_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Office1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Lobby_Records_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Lobby_Records_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Lobby_Records_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.52, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Lobby_Records_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Lobby_Records_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.609, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ER_NurseStn_Lobby_Flr_1 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.241, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- ICU_NurseStn_Lobby_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.19, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.645, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- OR_NurseStn_Lobby_Flr_2 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.236, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- PhysTherapy_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- PhysTherapy_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- PhysTherapy_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.263, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- PhysTherapy_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- PhysTherapy_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- NurseStn_Lobby_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- NurseStn_Lobby_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- NurseStn_Lobby_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.295, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- NurseStn_Lobby_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- NurseStn_Lobby_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_SE_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_SE_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_SE_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.567, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_SE_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_SE_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_NW_Flr_3 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_NW_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_NW_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.567, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_NW_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_NW_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Radiology_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Radiology_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Radiology_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.066, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Radiology_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Radiology_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- NurseStn_Lobby_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- NurseStn_Lobby_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- NurseStn_Lobby_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.275, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- NurseStn_Lobby_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- NurseStn_Lobby_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_SE_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_SE_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_SE_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.5, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_SE_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_SE_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_NW_Flr_4 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_NW_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_NW_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.505, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_NW_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_NW_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Dining_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Dining_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Dining_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.674, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Dining_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Dining_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- NurseStn_Lobby_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- NurseStn_Lobby_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- NurseStn_Lobby_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.221, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- NurseStn_Lobby_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- NurseStn_Lobby_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Office1_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Office1_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Office1_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.186, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Office1_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Office1_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Office2_Mult5_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Office2_Mult5_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Office2_Mult5_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.276, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Office2_Mult5_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Office2_Mult5_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Office3_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Office3_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Office3_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.159, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Office3_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Office3_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Office4_Mult6_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Office4_Mult6_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Office4_Mult6_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.137, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Office4_Mult6_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Office4_Mult6_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
- AirTerminal:SingleDuct:VAV:Reheat,
- Corridor_Flr_5 VAV Box Component, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- Corridor_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name
- Corridor_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name
- AUTOSIZE, !- Maximum Air Flow Rate {m3/s}
- Constant, !- Zone Minimum Air Flow Input Method
- 0.332, !- Constant Minimum Air Flow Fraction
- , !- Fixed Minimum Air Flow Rate {m3/s}
- , !- Minimum Air Flow Fraction Schedule Name
- Coil:Heating:Water, !- Reheat Coil Object Type
- Corridor_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name
- AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s}
- 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
- Corridor_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- 0.001, !- Convergence Tolerance
- ReverseWithLimits, !- Damper Heating Action
- , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2}
- 0.5, !- Maximum Flow Fraction During Reheat
- 40; !- Maximum Reheat Air Temperature {C}
-
-!- =========== ALL OBJECTS IN CLASS: ZONE CONTROL:THERMOSTATIC ===========
-
- ZoneControl:Thermostat,
- Basement Thermostat, !- Name
- Basement, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Basement DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ER_Exam1_Mult4_Flr_1 Thermostat, !- Name
- ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ER_Exam1_Mult4_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ER_Trauma1_Flr_1 Thermostat, !- Name
- ER_Trauma1_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ER_Trauma1_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ER_Exam3_Mult4_Flr_1 Thermostat, !- Name
- ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ER_Exam3_Mult4_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ER_Trauma2_Flr_1 Thermostat, !- Name
- ER_Trauma2_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ER_Trauma2_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ER_Triage_Mult4_Flr_1 Thermostat, !- Name
- ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ER_Triage_Mult4_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Office1_Mult4_Flr_1 Thermostat, !- Name
- Office1_Mult4_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Office1_Mult4_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Lobby_Records_Flr_1 Thermostat, !- Name
- Lobby_Records_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Lobby_Records_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_Flr_1 Thermostat, !- Name
- Corridor_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ER_NurseStn_Lobby_Flr_1 Thermostat, !- Name
- ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ER_NurseStn_Lobby_Flr_1 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- OR1_Flr_2 Thermostat, !- Name
- OR1_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- OR1_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- OR2_Mult5_Flr_2 Thermostat, !- Name
- OR2_Mult5_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- OR2_Mult5_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- OR3_Flr_2 Thermostat, !- Name
- OR3_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- OR3_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- OR4_Flr_2 Thermostat, !- Name
- OR4_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- OR4_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- IC_PatRoom1_Mult5_Flr_2 Thermostat, !- Name
- IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- IC_PatRoom1_Mult5_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- IC_PatRoom2_Flr_2 Thermostat, !- Name
- IC_PatRoom2_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- IC_PatRoom2_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- IC_PatRoom3_Mult6_Flr_2 Thermostat, !- Name
- IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- IC_PatRoom3_Mult6_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ICU_Flr_2 Thermostat, !- Name
- ICU_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ICU_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- ICU_NurseStn_Lobby_Flr_2 Thermostat, !- Name
- ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- ICU_NurseStn_Lobby_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_Flr_2 Thermostat, !- Name
- Corridor_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- OR_NurseStn_Lobby_Flr_2 Thermostat, !- Name
- OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- OR_NurseStn_Lobby_Flr_2 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom1_Mult10_Flr_3 Thermostat, !- Name
- PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom1_Mult10_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom2_Flr_3 Thermostat, !- Name
- PatRoom2_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom2_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom3_Mult10_Flr_3 Thermostat, !- Name
- PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom3_Mult10_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom4_Flr_3 Thermostat, !- Name
- PatRoom4_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom4_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom5_Mult10_Flr_3 Thermostat, !- Name
- PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom5_Mult10_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PhysTherapy_Flr_3 Thermostat, !- Name
- PhysTherapy_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PhysTherapy_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom6_Flr_3 Thermostat, !- Name
- PatRoom6_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom6_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom7_Mult10_Flr_3 Thermostat, !- Name
- PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom7_Mult10_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom8_Flr_3 Thermostat, !- Name
- PatRoom8_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom8_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- NurseStn_Lobby_Flr_3 Thermostat, !- Name
- NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- NurseStn_Lobby_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Lab_Flr_3 Thermostat, !- Name
- Lab_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Lab_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_SE_Flr_3 Thermostat, !- Name
- Corridor_SE_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_SE_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_NW_Flr_3 Thermostat, !- Name
- Corridor_NW_Flr_3, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_NW_Flr_3 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom1_Mult10_Flr_4 Thermostat, !- Name
- PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom1_Mult10_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom2_Flr_4 Thermostat, !- Name
- PatRoom2_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom2_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom3_Mult10_Flr_4 Thermostat, !- Name
- PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom3_Mult10_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom4_Flr_4 Thermostat, !- Name
- PatRoom4_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom4_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom5_Mult10_Flr_4 Thermostat, !- Name
- PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom5_Mult10_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Radiology_Flr_4 Thermostat, !- Name
- Radiology_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Radiology_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom6_Flr_4 Thermostat, !- Name
- PatRoom6_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom6_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom7_Mult10_Flr_4 Thermostat, !- Name
- PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom7_Mult10_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- PatRoom8_Flr_4 Thermostat, !- Name
- PatRoom8_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- PatRoom8_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- NurseStn_Lobby_Flr_4 Thermostat, !- Name
- NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- NurseStn_Lobby_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Lab_Flr_4 Thermostat, !- Name
- Lab_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Lab_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_SE_Flr_4 Thermostat, !- Name
- Corridor_SE_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_SE_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_NW_Flr_4 Thermostat, !- Name
- Corridor_NW_Flr_4, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_NW_Flr_4 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Dining_Flr_5 Thermostat, !- Name
- Dining_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Dining_Flr_5 DualSPSched;!- Control 1 Name
-
- ZoneControl:Thermostat,
- NurseStn_Lobby_Flr_5 Thermostat, !- Name
- NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- NurseStn_Lobby_Flr_5 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Kitchen_Flr_5 Thermostat,!- Name
- Kitchen_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Kitchen_Flr_5 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Office1_Flr_5 Thermostat,!- Name
- Office1_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Office1_Flr_5 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Office2_Mult5_Flr_5 Thermostat, !- Name
- Office2_Mult5_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Office2_Mult5_Flr_5 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Office3_Flr_5 Thermostat,!- Name
- Office3_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Office3_Flr_5 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Office4_Mult6_Flr_5 Thermostat, !- Name
- Office4_Mult6_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Office4_Mult6_Flr_5 DualSPSched; !- Control 1 Name
-
- ZoneControl:Thermostat,
- Corridor_Flr_5 Thermostat, !- Name
- Corridor_Flr_5, !- Zone or ZoneList Name
- Dual Zone Control Type Sched, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Corridor_Flr_5 DualSPSched; !- Control 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: DUAL SETPOINT WITH DEADBAND ===========
-
- ThermostatSetpoint:DualSetpoint,
- Basement DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ER_Exam1_Mult4_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ER_Trauma1_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ER_Exam3_Mult4_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ER_Trauma2_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ER_Triage_Mult4_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Office1_Mult4_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Lobby_Records_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ER_NurseStn_Lobby_Flr_1 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- OR1_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- OR2_Mult5_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- OR3_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- OR4_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- IC_PatRoom1_Mult5_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- IC_PatRoom2_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- IC_PatRoom3_Mult6_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ICU_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- ICU_NurseStn_Lobby_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- OR_NurseStn_Lobby_Flr_2 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom1_Mult10_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom2_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom3_Mult10_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom4_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom5_Mult10_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PhysTherapy_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom6_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom7_Mult10_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom8_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- NurseStn_Lobby_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Lab_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_SE_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_NW_Flr_3 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom1_Mult10_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom2_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom3_Mult10_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom4_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom5_Mult10_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Radiology_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom6_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom7_Mult10_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- PatRoom8_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- NurseStn_Lobby_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Lab_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_SE_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_NW_Flr_4 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Dining_Flr_5 DualSPSched,!- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- NurseStn_Lobby_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Kitchen_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Office1_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Office2_Mult5_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Office3_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Office4_Mult6_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
- ThermostatSetpoint:DualSetpoint,
- Corridor_Flr_5 DualSPSched, !- Name
- HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name
- ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH ===========
-
- AirLoopHVAC:SupplyPath,
- VAV_1, !- Name
- VAV_1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_1 Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- VAV_ER, !- Name
- VAV_ER Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_ER Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- VAV_OR, !- Name
- VAV_OR Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_OR Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- VAV_ICU, !- Name
- VAV_ICU Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_ICU Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- VAV_PATRMS, !- Name
- VAV_PATRMS Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_PATRMS Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- VAV_2, !- Name
- VAV_2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_2 Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- VAV_LABS, !- Name
- VAV_LABS Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- VAV_LABS Supply Air Splitter; !- Component 1 Name
-
- AirLoopHVAC:SupplyPath,
- CAV_KITCHEN, !- Name
- CAV_KITCHEN Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- CAV_KITCHEN Supply Air Splitter; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH ===========
-
- AirLoopHVAC:ReturnPath,
- VAV_1 Return Air Path, !- Name
- VAV_1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_1 Return Air Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- VAV_ER Return Air Path, !- Name
- VAV_ER Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_ER Return Air Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- VAV_OR Return Air Path, !- Name
- VAV_OR Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_OR Return Air Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- VAV_ICU Return Air Path, !- Name
- VAV_ICU Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_ICU Return Air Mixer;!- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- VAV_PATRMS Return Air Path, !- Name
- VAV_PATRMS Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_PATRMS Return Air Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- VAV_2 Return Air Path, !- Name
- VAV_2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_2 Return Air Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- VAV_LABS Return Air Path,!- Name
- VAV_LABS Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- VAV_LABS Return Air Mixer; !- Component 1 Name
-
- AirLoopHVAC:ReturnPath,
- CAV_KITCHEN Return Air Path, !- Name
- CAV_KITCHEN Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- CAV_KITCHEN Return Air Mixer; !- Component 1 Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER ===========
-
- AirLoopHVAC:ZoneSplitter,
- VAV_1 Supply Air Splitter, !- Name
- VAV_1 Zone Equipment Inlet Node, !- Inlet Node Name
- Basement VAV Box Inlet Node, !- Outlet 1 Node Name
- Office1_Mult4_Flr_1 VAV Box Inlet Node, !- Outlet 2 Node Name
- Lobby_Records_Flr_1 VAV Box Inlet Node, !- Outlet 3 Node Name
- Corridor_Flr_1 VAV Box Inlet Node, !- Outlet 4 Node Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Inlet Node, !- Outlet 5 Node Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Inlet Node, !- Outlet 6 Node Name
- Corridor_Flr_2 VAV Box Inlet Node, !- Outlet 7 Node Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Inlet Node; !- Outlet 8 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- VAV_ER Supply Air Splitter, !- Name
- VAV_ER Zone Equipment Inlet Node, !- Inlet Node Name
- ER_Exam1_Mult4_Flr_1 VAV Box Inlet Node, !- Outlet 1 Node Name
- ER_Trauma1_Flr_1 VAV Box Inlet Node, !- Outlet 2 Node Name
- ER_Exam3_Mult4_Flr_1 VAV Box Inlet Node, !- Outlet 3 Node Name
- ER_Trauma2_Flr_1 VAV Box Inlet Node, !- Outlet 4 Node Name
- ER_Triage_Mult4_Flr_1 VAV Box Inlet Node; !- Outlet 5 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- VAV_OR Supply Air Splitter, !- Name
- VAV_OR Zone Equipment Inlet Node, !- Inlet Node Name
- OR1_Flr_2 VAV Box Inlet Node, !- Outlet 1 Node Name
- OR2_Mult5_Flr_2 VAV Box Inlet Node, !- Outlet 2 Node Name
- OR3_Flr_2 VAV Box Inlet Node, !- Outlet 3 Node Name
- OR4_Flr_2 VAV Box Inlet Node; !- Outlet 4 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- VAV_ICU Supply Air Splitter, !- Name
- VAV_ICU Zone Equipment Inlet Node, !- Inlet Node Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Inlet Node, !- Outlet 1 Node Name
- IC_PatRoom2_Flr_2 VAV Box Inlet Node, !- Outlet 2 Node Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Inlet Node, !- Outlet 3 Node Name
- ICU_Flr_2 VAV Box Inlet Node; !- Outlet 4 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- VAV_PATRMS Supply Air Splitter, !- Name
- VAV_PATRMS Zone Equipment Inlet Node, !- Inlet Node Name
- PatRoom1_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 1 Node Name
- PatRoom2_Flr_3 VAV Box Inlet Node, !- Outlet 2 Node Name
- PatRoom3_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 3 Node Name
- PatRoom4_Flr_3 VAV Box Inlet Node, !- Outlet 4 Node Name
- PatRoom5_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 5 Node Name
- PatRoom6_Flr_3 VAV Box Inlet Node, !- Outlet 6 Node Name
- PatRoom7_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 7 Node Name
- PatRoom8_Flr_3 VAV Box Inlet Node, !- Outlet 8 Node Name
- PatRoom1_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 9 Node Name
- PatRoom2_Flr_4 VAV Box Inlet Node, !- Outlet 10 Node Name
- PatRoom3_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 11 Node Name
- PatRoom4_Flr_4 VAV Box Inlet Node, !- Outlet 12 Node Name
- PatRoom5_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 13 Node Name
- PatRoom6_Flr_4 VAV Box Inlet Node, !- Outlet 14 Node Name
- PatRoom7_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 15 Node Name
- PatRoom8_Flr_4 VAV Box Inlet Node; !- Outlet 16 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- VAV_2 Supply Air Splitter, !- Name
- VAV_2 Zone Equipment Inlet Node, !- Inlet Node Name
- PhysTherapy_Flr_3 VAV Box Inlet Node, !- Outlet 1 Node Name
- NurseStn_Lobby_Flr_3 VAV Box Inlet Node, !- Outlet 2 Node Name
- Corridor_SE_Flr_3 VAV Box Inlet Node, !- Outlet 3 Node Name
- Corridor_NW_Flr_3 VAV Box Inlet Node, !- Outlet 4 Node Name
- Radiology_Flr_4 VAV Box Inlet Node, !- Outlet 5 Node Name
- NurseStn_Lobby_Flr_4 VAV Box Inlet Node, !- Outlet 6 Node Name
- Corridor_SE_Flr_4 VAV Box Inlet Node, !- Outlet 7 Node Name
- Corridor_NW_Flr_4 VAV Box Inlet Node, !- Outlet 8 Node Name
- Dining_Flr_5 VAV Box Inlet Node, !- Outlet 9 Node Name
- NurseStn_Lobby_Flr_5 VAV Box Inlet Node, !- Outlet 10 Node Name
- Office1_Flr_5 VAV Box Inlet Node, !- Outlet 11 Node Name
- Office2_Mult5_Flr_5 VAV Box Inlet Node, !- Outlet 12 Node Name
- Office3_Flr_5 VAV Box Inlet Node, !- Outlet 13 Node Name
- Office4_Mult6_Flr_5 VAV Box Inlet Node, !- Outlet 14 Node Name
- Corridor_Flr_5 VAV Box Inlet Node; !- Outlet 15 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- VAV_LABS Supply Air Splitter, !- Name
- VAV_LABS Zone Equipment Inlet Node, !- Inlet Node Name
- Lab_Flr_3 VAV Box Inlet Node, !- Outlet 1 Node Name
- Lab_Flr_4 VAV Box Inlet Node; !- Outlet 2 Node Name
-
- AirLoopHVAC:ZoneSplitter,
- CAV_KITCHEN Supply Air Splitter, !- Name
- CAV_KITCHEN Zone Equipment Inlet Node, !- Inlet Node Name
- Kitchen_Flr_5 Inlet Nodes; !- Outlet 1 Node Name
-
-!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER ===========
-
- AirLoopHVAC:ZoneMixer,
- VAV_1 Return Air Mixer, !- Name
- VAV_1 Zone Equipment Outlet Node, !- Outlet Node Name
- Basement Return Air Node,!- Inlet 1 Node Name
- Office1_Mult4_Flr_1 Return Air Node, !- Inlet 2 Node Name
- Lobby_Records_Flr_1 Return Air Node, !- Inlet 3 Node Name
- Corridor_Flr_1 Return Air Node, !- Inlet 4 Node Name
- ER_NurseStn_Lobby_Flr_1 Return Air Node, !- Inlet 5 Node Name
- ICU_NurseStn_Lobby_Flr_2 Return Air Node, !- Inlet 6 Node Name
- Corridor_Flr_2 Return Air Node, !- Inlet 7 Node Name
- OR_NurseStn_Lobby_Flr_2 Return Air Node; !- Inlet 8 Node Name
-
- AirLoopHVAC:ZoneMixer,
- VAV_ER Return Air Mixer, !- Name
- VAV_ER Zone Equipment Outlet Node, !- Outlet Node Name
- ER_Exam1_Mult4_Flr_1 Return Air Node, !- Inlet 1 Node Name
- ER_Trauma1_Flr_1 Return Air Node, !- Inlet 2 Node Name
- ER_Exam3_Mult4_Flr_1 Return Air Node, !- Inlet 3 Node Name
- ER_Trauma2_Flr_1 Return Air Node, !- Inlet 4 Node Name
- ER_Triage_Mult4_Flr_1 Return Air Node; !- Inlet 5 Node Name
-
- AirLoopHVAC:ZoneMixer,
- VAV_OR Return Air Mixer, !- Name
- VAV_OR Zone Equipment Outlet Node, !- Outlet Node Name
- OR1_Flr_2 Return Air Node, !- Inlet 1 Node Name
- OR2_Mult5_Flr_2 Return Air Node, !- Inlet 2 Node Name
- OR3_Flr_2 Return Air Node, !- Inlet 3 Node Name
- OR4_Flr_2 Return Air Node; !- Inlet 4 Node Name
-
- AirLoopHVAC:ZoneMixer,
- VAV_ICU Return Air Mixer,!- Name
- VAV_ICU Zone Equipment Outlet Node, !- Outlet Node Name
- IC_PatRoom1_Mult5_Flr_2 Return Air Node, !- Inlet 1 Node Name
- IC_PatRoom2_Flr_2 Return Air Node, !- Inlet 2 Node Name
- IC_PatRoom3_Mult6_Flr_2 Return Air Node, !- Inlet 3 Node Name
- ICU_Flr_2 Return Air Node; !- Inlet 4 Node Name
-
- AirLoopHVAC:ZoneMixer,
- VAV_PATRMS Return Air Mixer, !- Name
- VAV_PATRMS Zone Equipment Outlet Node, !- Outlet Node Name
- PatRoom1_Mult10_Flr_3 Return Air Node, !- Inlet 1 Node Name
- PatRoom2_Flr_3 Return Air Node, !- Inlet 2 Node Name
- PatRoom3_Mult10_Flr_3 Return Air Node, !- Inlet 3 Node Name
- PatRoom4_Flr_3 Return Air Node, !- Inlet 4 Node Name
- PatRoom5_Mult10_Flr_3 Return Air Node, !- Inlet 5 Node Name
- PatRoom6_Flr_3 Return Air Node, !- Inlet 6 Node Name
- PatRoom7_Mult10_Flr_3 Return Air Node, !- Inlet 7 Node Name
- PatRoom8_Flr_3 Return Air Node, !- Inlet 8 Node Name
- PatRoom1_Mult10_Flr_4 Return Air Node, !- Inlet 9 Node Name
- PatRoom2_Flr_4 Return Air Node, !- Inlet 10 Node Name
- PatRoom3_Mult10_Flr_4 Return Air Node, !- Inlet 11 Node Name
- PatRoom4_Flr_4 Return Air Node, !- Inlet 12 Node Name
- PatRoom5_Mult10_Flr_4 Return Air Node, !- Inlet 13 Node Name
- PatRoom6_Flr_4 Return Air Node, !- Inlet 14 Node Name
- PatRoom7_Mult10_Flr_4 Return Air Node, !- Inlet 15 Node Name
- PatRoom8_Flr_4 Return Air Node; !- Inlet 16 Node Name
-
- AirLoopHVAC:ZoneMixer,
- VAV_2 Return Air Mixer, !- Name
- VAV_2 Zone Equipment Outlet Node, !- Outlet Node Name
- PhysTherapy_Flr_3 Return Air Node, !- Inlet 1 Node Name
- NurseStn_Lobby_Flr_3 Return Air Node, !- Inlet 2 Node Name
- Corridor_SE_Flr_3 Return Air Node, !- Inlet 3 Node Name
- Corridor_NW_Flr_3 Return Air Node, !- Inlet 4 Node Name
- Radiology_Flr_4 Return Air Node, !- Inlet 5 Node Name
- NurseStn_Lobby_Flr_4 Return Air Node, !- Inlet 6 Node Name
- Corridor_SE_Flr_4 Return Air Node, !- Inlet 7 Node Name
- Corridor_NW_Flr_4 Return Air Node, !- Inlet 8 Node Name
- Dining_Flr_5 Return Air Node, !- Inlet 9 Node Name
- NurseStn_Lobby_Flr_5 Return Air Node, !- Inlet 10 Node Name
- Office1_Flr_5 Return Air Node, !- Inlet 11 Node Name
- Office2_Mult5_Flr_5 Return Air Node, !- Inlet 12 Node Name
- Office3_Flr_5 Return Air Node, !- Inlet 13 Node Name
- Office4_Mult6_Flr_5 Return Air Node, !- Inlet 14 Node Name
- Corridor_Flr_5 Return Air Node; !- Inlet 15 Node Name
-
- AirLoopHVAC:ZoneMixer,
- VAV_LABS Return Air Mixer, !- Name
- VAV_LABS Zone Equipment Outlet Node, !- Outlet Node Name
- Lab_Flr_3 Return Air Node, !- Inlet 1 Node Name
- Lab_Flr_4 Return Air Node; !- Inlet 2 Node Name
-
- AirLoopHVAC:ZoneMixer,
- CAV_KITCHEN Return Air Mixer, !- Name
- CAV_KITCHEN Zone Equipment Outlet Node, !- Outlet Node Name
- Kitchen_Flr_5 Return Air Node; !- Inlet 1 Node Name
-
-!- =========== ALL OBJECTS IN CLASS: BOILER:SIMPLE ===========
-
- Boiler:HotWater,
- HeatSys1 Boiler, !- Name
- NATURALGAS, !- Fuel Type
-1470129.16, !- Nominal Capacity {W}
-0.8125, !- Nominal Thermal Efficiency
- LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable
- HeatSys1 Boiler Efficiency Curve, !- Normalized Boiler Efficiency Curve Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- 0.0, !- Minimum Part Load Ratio
- 1.2, !- Maximum Part Load Ratio
- 1.0, !- Optimum Part Load Ratio
- HeatSys1 Pump-HeatSys1 BoilerNode, !- Boiler Water Inlet Node Name
- HeatSys1 Supply Equipment Outlet Node, !- Boiler Water Outlet Node Name
- 95.0, !- Water Outlet Upper Temperature Limit {C}
- LeavingSetpointModulated;!- Boiler Flow Mode
-
-
- SetpointManager:Scheduled,
- HeatSys1 Boiler Setpoint Manager, !- Name
- Temperature, !- Control Variable
- HW-Loop-Temp-Schedule, !- Schedule Name
- HeatSys1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name
-
-
- Curve:Quadratic,
- HeatSys1 Boiler Efficiency Curve, !- Name
- 1.0, !- Coefficient1 Constant
- 0.0, !- Coefficient2 x
- 0.0, !- Coefficient3 x**2
- 0, !- Minimum Value of x
- 1; !- Maximum Value of x
-
-!- =========== ALL OBJECTS IN CLASS: CHILLER:ELECTRIC:EIR ===========
-
- Chiller:Electric:EIR,
- Heat Recovery Chiller, !- Name
-129842.5275, !- Reference Capacity {W}
-4.47, !- Reference COP {W/W}
- 6.67, !- Reference Leaving Chilled Water Temperature {C}
- 23.88, !- Reference Entering Condenser Fluid Temperature {C}
-0.00569211009519065, !- Reference Chilled Water Flow Rate {m3/s}
- autosize, !- Reference Condenser Fluid Flow Rate {m3/s}
-Lp2LpChlr_CAP_FT, !- Cooling Capacity Function of Temperature Curve Name
-Lp2LpChlr_EIR_FT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name
-Lp2LpChlr_PLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name
- 0.1, !- Minimum Part Load Ratio
- 1, !- Maximum Part Load Ratio
- 1, !- Optimum Part Load Ratio
- 0.2, !- Minimum Unloading Ratio
- Heat Recovery Chiller Inlet, !- Chilled Water Inlet Node Name
- Heat Recovery Chiller Outlet, !- Chilled Water Outlet Node Name
- Heat Recovery Chiller Condenser Inlet, !- Condenser Inlet Node Name
- Heat Recovery Chiller Condenser Outlet, !- Condenser Outlet Node Name
- WaterCooled, !- Condenser Type
- , !- Condenser Fan Power Ratio {W/W}
- 1, !- Fraction of Compressor Electric Consumption Rejected by Condenser
- 2, !- Leaving Chilled Water Lower Temperature Limit {C}
- NotModulated, !- Chiller Flow Mode
- autosize, !- Design Heat Recovery Water Flow Rate {m3/s}
- Heat Recovery Chiller HR Inlet Node, !- Heat Recovery Inlet Node Name
- Heat Recovery Chiller HR Outlet Node, !- Heat Recovery Outlet Node Name
- 1, !- Sizing Factor
- , !- Basin Heater Capacity {W/K}
- 2, !- Basin Heater Setpoint Temperature {C}
- , !- Basin Heater Operating Schedule Name
- , !- Condenser Heat Recovery Relative Capacity Fraction
- , !- Heat Recovery Inlet High Temperature Limit Schedule Name
- Heat Recovery Chiller HR Outlet Node, !- Heat Recovery Leaving Temperature Setpoint Node Name
- General; !- End-Use Subcategory
-
- Curve:Quadratic,
- Lp2LpChlr_PLR, !- Name
- 0.02297712, !- Coefficient1 Constant
- 0.90150452, !- Coefficient2 x
- 0.07551826, !- Coefficient3 x**2
- 0, !- Minimum Value of x
- 1, !- Maximum Value of x
- , !- Minimum Curve Output
- , !- Maximum Curve Output
- Dimensionless, !- Input Unit Type for X
- Dimensionless; !- Output Unit Type
-
- Curve:Biquadratic,
- Lp2LpChlr_CAP_FT, !- Name
- 0.91244573, !- Coefficient1 Constant
- 0.033950641, !- Coefficient2 x
- 0.000258828, !- Coefficient3 x**2
- -.002545924, !- Coefficient4 y
- -.0000833545, !- Coefficient5 y**2
- -.000263086, !- Coefficient6 x*y
- 0, !- Minimum Value of x
- 999, !- Maximum Value of x
- 0, !- Minimum Value of y
- 999, !- Maximum Value of y
- , !- Minimum Curve Output
- , !- Maximum Curve Output
- Dimensionless, !- Input Unit Type for X
- Dimensionless, !- Input Unit Type for Y
- Dimensionless; !- Output Unit Type
-
- Curve:Biquadratic,
- Lp2LpChlr_EIR_FT, !- Name
- 0.685706383, !- Coefficient1 Constant
- -.010880034, !- Coefficient2 x
- 0.000383057, !- Coefficient3 x**2
- 0.00988623, !- Coefficient4 y
- 0.000357473, !- Coefficient5 y**2
- -.000441863, !- Coefficient6 x*y
- 0, !- Minimum Value of x
- 999, !- Maximum Value of x
- 0, !- Minimum Value of y
- 999, !- Maximum Value of y
- , !- Minimum Curve Output
- , !- Maximum Curve Output
- Dimensionless, !- Input Unit Type for X
- Dimensionless, !- Input Unit Type for Y
- Dimensionless; !- Output Unit Type
-
-
-
-
-
-!- =========== ALL OBJECTS IN CLASS: Chiller:Electric:ReformulatedEIR ===========
-
-
- Chiller:Electric:ReformulatedEIR,
- CoolSys1 Chiller1, !- Name
-927446.625, !- Reference Capacity {W}
-5.33, !- Reference COP {W/W}
- 6.6700, !- Reference Leaving Chilled Water Temperature {C}
- 34.4444, !- Reference Leaving Condenser Water Temperature {C}
-0.0270079, !- Reference Chilled Water Flow Rate {m3/s}
- AutoSize, !- Reference Condenser Water Flow Rate {m3/s}
-WC_PD_GT150_2010_PA_CAPFT, !- Cooling Capacity Function of Temperature Curve Name
-WC_PD_GT150_2010_PA_EIRFT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name
- LeavingCondenserWaterTemperature, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type
-WC_PD_150to300_2010_PA_EIRFPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name
- 0.1000, !- Minimum Part Load Ratio
- 1.0000, !- Maximum Part Load Ratio
- 1.0000, !- Optimum Part Load Ratio
- 0.1000, !- Minimum Unloading Ratio
- CoolSys1 Pump-CoolSys1 Chiller1Node, !- Chilled Water Inlet Node Name
- CoolSys1 Supply Equipment Outlet Node 1, !- Chilled Water Outlet Node Name
- CoolSys1 Chiller1 Water Inlet Node, !- Condenser Inlet Node Name
- CoolSys1 Chiller1 Water Outlet Node, !- Condenser Outlet Node Name
- , !- Fraction of Compressor Electric Consumption Rejected by Condenser
- 5.0000, !- Leaving Chilled Water Lower Temperature Limit {C}
- ConstantFlow, !- Chiller Flow Mode Type
- 0.0000; !- Design Heat Recovery Water Flow Rate {m3/s}
-
-
- Chiller:Electric:ReformulatedEIR,
- CoolSys1 Chiller2, !- Name
-927446.625, !- Reference Capacity {W}
-5.33, !- Reference COP {W/W}
- 6.6700, !- Reference Leaving Chilled Water Temperature {C}
- 34.4444, !- Reference Leaving Condenser Water Temperature {C}
-0.0270079, !- Reference Chilled Water Flow Rate {m3/s}
- AutoSize, !- Reference Condenser Water Flow Rate {m3/s}
-WC_PD_GT150_2010_PA_CAPFT, !- Cooling Capacity Function of Temperature Curve Name
-WC_PD_GT150_2010_PA_EIRFT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name
- LeavingCondenserWaterTemperature, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type
-WC_PD_150to300_2010_PA_EIRFPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name
- 0.1000, !- Minimum Part Load Ratio
- 1.0000, !- Maximum Part Load Ratio
- 1.0000, !- Optimum Part Load Ratio
- 0.1000, !- Minimum Unloading Ratio
- CoolSys1 Pump-CoolSys1 Chiller2Node, !- Chilled Water Inlet Node Name
- CoolSys1 Supply Equipment Outlet Node 2, !- Chilled Water Outlet Node Name
- CoolSys1 Chiller2 Water Inlet Node, !- Condenser Inlet Node Name
- CoolSys1 Chiller2 Water Outlet Node, !- Condenser Outlet Node Name
- , !- Fraction of Compressor Electric Consumption Rejected by Condenser
- 5.0000, !- Leaving Chilled Water Lower Temperature Limit {C}
- ConstantFlow, !- Chiller Flow Mode Type
- 0.0000; !- Design Heat Recovery Water Flow Rate {m3/s}
-
-!- =========== ALL OBJECTS IN CLASS: WATER HEATER:MIXED ===========
-
-
- WaterHeater:Mixed,
- SHWSys1 Water Heater, !- Name
- 2.271247, !- Tank Volume {m3}
- SHWSys1 Water Heater Setpoint Temperature Schedule, !- Setpoint Temperature Schedule Name
- 2.0, !- Deadband Temperature Difference {deltaC}
- 82.2222, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 175842.64, !- Heater Maximum Capacity {W}
- , !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- NATURALGAS, !- Heater Fuel Type
- 0.802764686, !- Heater Thermal Efficiency
- , !- Part Load Factor Curve Name
- 17147.66, !- Off Cycle Parasitic Fuel Consumption Rate {W}
- NATURALGAS, !- Off Cycle Parasitic Fuel Type
- 0.8, !- Off Cycle Parasitic Heat Fraction to Tank
- 17147.66, !- On Cycle Parasitic Fuel Consumption Rate {W}
- NATURALGAS, !- On Cycle Parasitic Fuel Type
- , !- On Cycle Parasitic Heat Fraction to Tank
- zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- BASEMENT, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 15.60100708, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 15.60100708, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- , !- Peak Use Flow Rate {m3/s}
- , !- Use Flow Rate Fraction Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Use Side Inlet Node Name
- SHWSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name
- 1.0, !- Use Side Effectiveness
- , !- Source Side Inlet Node Name
- , !- Source Side Outlet Node Name
- 1.0, !- Source Side Effectiveness
- AUTOSIZE, !- Use Side Design Flow Rate {m3/s}
- AUTOSIZE, !- Source Side Design Flow Rate {m3/s}
- 1.5; !- Indirect Water Heating Recovery Time {hr}
-
-
-
- WaterHeater:Mixed,
- SWH DishWashing Booster, !- Name
- 0.02271247, !- Tank Volume {m3}
- Dishwashing Booster Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 2.00000005298191, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 3000, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- Electricity, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
- , !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- KITCHEN_FLR_5, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 1.053159296, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 1.053159296, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 3.659231E-5, !- Peak Use Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Use Flow Rate Fraction Schedule Name
- Dishwashing Booster Water Inlet Temp Schedule; !- Cold Water Supply Temperature Schedule Name
-
-
-
- WaterHeater:Mixed,
- SWH Laundry, !- Name
- 1.1356235, !- Tank Volume {m3}
- Laundry Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name
- 2.00000005298191, !- Deadband Temperature Difference {deltaC}
- 82.2222244003673, !- Maximum Temperature Limit {C}
- Cycle, !- Heater Control Type
- 87921.32, !- Heater Maximum Capacity {W}
- 0, !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- NaturalGas, !- Heater Fuel Type
- 0.803988738, !- Heater Thermal Efficiency
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- NaturalGas, !- Off Cycle Parasitic Fuel Type
- 0, !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
- , !- On Cycle Parasitic Heat Fraction to Tank
- Zone, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- BASEMENT, !- Ambient Temperature Zone Name
- , !- Ambient Temperature Outdoor Air Node Name
- 11.25413987, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- Off Cycle Loss Fraction to Zone
- 11.25413987, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- , !- On Cycle Loss Fraction to Zone
- 1.766525E-4, !- Peak Use Flow Rate {m3/s}
- LAUNDRY_SWH_SCH, !- Use Flow Rate Fraction Schedule Name
- ; !- Cold Water Supply Temperature Schedule Name
-
- WaterHeater:Mixed,
- Dummy Water Heater, !- Name
- 0.0189271, !- Tank Volume {m3}
- Dummy Water Heater Setpoint, !- Setpoint Temperature Schedule Name
- 0, !- Deadband Temperature Difference {deltaC}
- 50, !- Maximum Temperature Limit {C}
- CYCLE, !- Heater Control Type
- 0, !- Heater Maximum Capacity {W}
- , !- Heater Minimum Capacity {W}
- , !- Heater Ignition Minimum Flow Rate {m3/s}
- , !- Heater Ignition Delay {s}
- Electricity, !- Heater Fuel Type
- 1, !- Heater Thermal Efficiency
- , !- Part Load Factor Curve Name
- , !- Off Cycle Parasitic Fuel Consumption Rate {W}
- , !- Off Cycle Parasitic Fuel Type
- , !- Off Cycle Parasitic Heat Fraction to Tank
- , !- On Cycle Parasitic Fuel Consumption Rate {W}
- , !- On Cycle Parasitic Fuel Type
- , !- On Cycle Parasitic Heat Fraction to Tank
- Outdoors, !- Ambient Temperature Indicator
- , !- Ambient Temperature Schedule Name
- , !- Ambient Temperature Zone Name
- Dummy Water Heater OA Node, !- Ambient Temperature Outdoor Air Node Name
- 0, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
- 0, !- Off Cycle Loss Fraction to Zone
- 0, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
- 0, !- On Cycle Loss Fraction to Zone
- , !- Peak Use Flow Rate {m3/s}
- , !- Use Flow Rate Fraction Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Use Side Inlet Node Name
- Dummy Water Heater Use Side Outlet Node, !- Use Side Outlet Node Name
- 1.0, !- Use Side Effectiveness
- Dummy Water Heater Source Side Inlet Node, !- Source Side Inlet Node Name
- Dummy Water Heater Source Side Outlet Node, !- Source Side Outlet Node Name
- 1.0, !- Source Side Effectiveness
- autosize, !- Use Side Design Flow Rate {m3/s}
- autosize; !- Source Side Design Flow Rate {m3/s}
-
-
-!- =========== ALL OBJECTS IN CLASS: COOLING TOWER:TWO SPEED ===========
-
-!- Design Outdoor Air Wet-Bulb Temperature from the EPW file
-!- Design Range Temperature is set to 10 deltaF per 90.1-2010 G3.1.3.13
-!- Design Approach Temperature. Per 90.1-2010 G3.1.3.13, condenser water design supply temperature shall be
-!- 85F or 10F approaching design wet-bulb temperature, whichever is lower, with a design temperature rise of 10F (range temperature).
-!- Therefore, we use Design Approach Temperature to set condenser water design supply temperature, i.e. Design Approach Temperature = min(10F, (85 - Design OA WbT from EPW))
-
- CoolingTower:VariableSpeed,
- TowerWaterSys CoolTower 1, !- Name
- TowerWaterSys Pump-TowerWaterSys CoolTower1Node, !- Water Inlet Node Name
- TowerWaterSys Supply Equipment Outlet Node 1, !- Water Outlet Node Name
- CoolToolsCrossFlow, !- Model Type
- , !- Model Coefficient Name
- 24.9, !- Design Inlet Air Wet-Bulb Temperature {C}
- 4.54444444444444, !- Design Approach Temperature {deltaC}
- 5.55555555555556, !- Design Range Temperature {deltaC}
-0.03686516, !- Design Water Flow Rate {m3/s}
- autosize, !- Design Air Flow Rate {m3/s}
-13113.1748080111, !- Design Fan Power {W}
- Tower_Fan_Curve, !- Fan Power Ratio Function of Air Flow Rate Ratio Curve Name
- 0.2, !- Minimum Air Flow Rate Ratio
- 0.125, !- Fraction of Tower Capacity in Free Convection Regime
- , !- Basin Heater Capacity {W/K}
- , !- Basin Heater Setpoint Temperature {C}
- , !- Basin Heater Operating Schedule Name
- , !- Evaporation Loss Mode
- , !- Evaporation Loss Factor {percent/K}
- , !- Drift Loss Percent {percent}
- , !- Blowdown Calculation Mode
- , !- Blowdown Concentration Ratio
- , !- Blowdown Makeup Water Usage Schedule Name
- , !- Supply Water Storage Tank Name
- , !- Outdoor Air Inlet Node Name
- 4, !- Number of Cells
- MaximalCell, !- Cell Control !- Cell Control
- , !- Cell Minimum Water Flow Rate Fraction
- , !- Cell Maximum Water Flow Rate Fraction
- 1.000; !- Sizing Factor
- CoolingTower:VariableSpeed,
- TowerWaterSys CoolTower 2, !- Name
- TowerWaterSys Pump-TowerWaterSys CoolTower2Node, !- Water Inlet Node Name
- TowerWaterSys Supply Equipment Outlet Node 2, !- Water Outlet Node Name
- CoolToolsCrossFlow, !- Model Type
- , !- Model Coefficient Name
- 24.9, !- Design Inlet Air Wet-Bulb Temperature {C}
- 4.54444444444444, !- Design Approach Temperature {deltaC}
- 5.55555555555556, !- Design Range Temperature {deltaC}
-0.03686516, !- Design Water Flow Rate {m3/s}
- autosize, !- Design Air Flow Rate {m3/s}
-13113.1748080111, !- Design Fan Power {W}
- Tower_Fan_Curve, !- Fan Power Ratio Function of Air Flow Rate Ratio Curve Name
- 0.2, !- Minimum Air Flow Rate Ratio
- 0.125, !- Fraction of Tower Capacity in Free Convection Regime
- , !- Basin Heater Capacity {W/K}
- , !- Basin Heater Setpoint Temperature {C}
- , !- Basin Heater Operating Schedule Name
- , !- Evaporation Loss Mode
- , !- Evaporation Loss Factor {percent/K}
- , !- Drift Loss Percent {percent}
- , !- Blowdown Calculation Mode
- , !- Blowdown Concentration Ratio
- , !- Blowdown Makeup Water Usage Schedule Name
- , !- Supply Water Storage Tank Name
- , !- Outdoor Air Inlet Node Name
- 4, !- Number of Cells
- MaximalCell, !- Cell Control
- , !- Cell Minimum Water Flow Rate Fraction
- , !- Cell Maximum Water Flow Rate Fraction
- 1.000; !- Sizing Factor
-!- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLE SPEED ===========
-
- Pump:ConstantSpeed,
- SHWSys1 Pump, !- Name
- SHWSys1 Supply Inlet Node, !- Inlet Node Name
- SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector, !- Outlet Node Name
- autosize, !- Design Flow Rate {m3/s}
- 29891, !- Design Pump Head {Pa}
- AUTOSIZE, !- Design Power Consumption {W}
- 0.30, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- Intermittent; !- Pump Control Type
-
-
-
-
-
- Pump:VariableSpeed,
- HeatSys1 Pump, !- Name
- HeatSys1 Supply Inlet Node, !- Inlet Node Name
- HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Outlet Node Name
- AUTOSIZE, !- Design Maximum Flow Rate {m3/s}
- 179352, !- Design Pump Head {Pa}
- AUTOSIZE, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- 0,0.0205, 0.4101,0.5753, !- VariableSpeed Pump Curve Coefficients
-
- 0, !- Minimum Flow Rate {m3/s}
- Intermittent;
-
-
-
-
- Pump:ConstantSpeed,
- CoolSys1 Chiller1 Pump, !- Name
- CoolSys1 Chiller1 Pump Inlet Node, !- Inlet Node Name
- CoolSys1 Pump-CoolSys1 Chiller1Node, !- Outlet Node Name
- AUTOSIZE, !- Design Flow Rate {m3/s}
- 44761.27683, !- Design Pump Head {Pa}
- AUTOSIZE, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- Intermittent, !- Pump Control Type
- ; !- Pump Flow Rate Schedule Name
-
- Pump:ConstantSpeed,
- CoolSys1 Chiller2 Pump, !- Name
- CoolSys1 Chiller2 Pump Inlet Node, !- Inlet Node Name
- CoolSys1 Pump-CoolSys1 Chiller2Node, !- Outlet Node Name
- AUTOSIZE, !- Design Flow Rate {m3/s}
- 44761.27683, !- Design Pump Head {Pa}
- AUTOSIZE, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- Intermittent, !- Pump Control Type
- ; !- Pump Flow Rate Schedule Name
-
-
-
-
- Pump:VariableSpeed,
- CoolSys1 Pump Secondary, !- Name
- CoolSys1 Demand Inlet Node, !- Inlet Node Name
- CoolSys1 Pump Secondary-CoolSys1 Demand Mixer, !- Outlet Node Name
- autosize, !- Design Maximum Flow Rate {m3/s}
- 134283.8305, !- Design Pump Head {Pa}
- autosize, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0, !- Fraction of Motor Inefficiencies to Fluid Stream
- 0,0.0205, 0.4101,0.5753, !- VariableSpeed Pump Curve Coefficients
-
- 0, !- Minimum Flow Rate {m3/s}
- Intermittent;
-
- Pump:VariableSpeed,
- Heat Recovery Circ Pump, !- Name
- Heat Recovery Supply Inlet Node, !- Inlet Node Name
- Heat Recovery Pump Outlet Node, !- Outlet Node Name
- autosize, !- Design Maximum Flow Rate {m3/s}
- 0, !- Design Pump Head {Pa}
- 0, !- Design Power Consumption {W}
- 1, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- 0, !- Coefficient 1 of the Part Load Performance Curve
- 1, !- Coefficient 2 of the Part Load Performance Curve
- 0, !- Coefficient 3 of the Part Load Performance Curve
- 0, !- Coefficient 4 of the Part Load Performance Curve
- 0, !- Design Minimum Flow Rate {m3/s}
- INTERMITTENT; !- Pump Control Type
-
- Pump:VariableSpeed,
- Heat Recovery Chiller Bypass Loop Pump, !- Name
- Heat Recovery Chiller Bypass Loop Pump Inlet, !- Inlet Node Name
- Heat Recovery Chiller Bypass Loop Pump Outlet, !- Outlet Node Name
- autosize, !- Design Maximum Flow Rate {m3/s}
- 44761.27683, !- Design Pump Head {Pa}
- autosize, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0, !- Fraction of Motor Inefficiencies to Fluid Stream
- 0,0.0205, 0.4101,0.5753, !- VariableSpeed Pump Curve Coefficients
- 0, !- Design Minimum Flow Rate {m3/s}
- Intermittent; !- Pump Control Type
-
-
-!- =========== ALL OBJECTS IN CLASS: PUMP:CONSTANT SPEED ===========
-
- HeaderedPumps:VariableSpeed,
- TowerWaterSys Pump, !- Name
- TowerWaterSys Supply Inlet Node, !- Inlet Node Name
- TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector, !- Outlet Node Name
- AUTOSIZE, !- Total Design Flow Rate {m3/s}
- 4, !- Number of Pumps in Bank
- SEQUENTIAL, !- Flow Sequencing Control Scheme
- 148556.6249, !- Design Pump Head {Pa}
- autosize, !- Design Power Consumption {W}
- 0.909, !- Motor Efficiency
- 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream
- 0, !- Coefficient 1 of the Part Load Performance Curve
- 0.0216, !- Coefficient 2 of the Part Load Performance Curve
- -0.0325, !- Coefficient 3 of the Part Load Performance Curve
- 1.0095, !- Coefficient 4 of the Part Load Performance Curve
- 0, !- Minimum Flow Rate Fraction
- Intermittent, !- Pump Control Type
- ; !- Pump Flow Rate Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: COIL:COOLING:WATER ===========
-
- Coil:Cooling:Water,
- VAV_1_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_1_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_1_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_1_OA-VAV_1_CoolCNode,!- Air Inlet Node Name
- VAV_1_CoolC-VAV_1_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- VAV_ER_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_ER_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_ER_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Air Inlet Node Name
- VAV_ER_CoolC-VAV_ER_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- VAV_OR_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_OR_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_OR_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Air Inlet Node Name
- VAV_OR_CoolC-VAV_OR_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- VAV_ICU_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_ICU_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_ICU_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Air Inlet Node Name
- VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- VAV_PATRMS_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_PATRMS_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_PATRMS_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Air Inlet Node Name
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- VAV_2_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_2_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_2_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_2_OA-VAV_2_CoolCNode,!- Air Inlet Node Name
- VAV_2_CoolC-VAV_2_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- VAV_LABS_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- VAV_LABS_CoolCDemand Inlet Node, !- Water Inlet Node Name
- VAV_LABS_CoolCDemand Outlet Node, !- Water Outlet Node Name
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Air Inlet Node Name
- VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
- Coil:Cooling:Water,
- CAV_KITCHEN_CoolC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- Design Water Flow Rate {m3/s}
- AUTOSIZE, !- Design Air Flow Rate {m3/s}
- 8.89, !- Design Inlet Water Temperature {C}
- AUTOSIZE, !- Design Inlet Air Temperature {C}
- AUTOSIZE, !- Design Outlet Air Temperature {C}
- AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir}
- AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir}
- CAV_KITCHEN_CoolCDemand Inlet Node, !- Water Inlet Node Name
- CAV_KITCHEN_CoolCDemand Outlet Node, !- Water Outlet Node Name
- CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Air Inlet Node Name
- CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Air Outlet Node Name
- SimpleAnalysis, !- Type of Analysis
- CrossFlow; !- Heat Exchanger Configuration
-
-!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:WATER ===========
-
-
- Coil:Heating:Water,
- VAV_PATRMS_ExtraWaterHeatC, !- Name
- Patrms_ExtraWaterHeatC_Sch, !- Availability Schedule Name
- , !- U-Factor Times Area Value {W/K}
- , !- Maximum Water Flow Rate {m3/s}
- VAV_PATRMS_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_PATRMS_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Air Inlet Node Name
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Air Outlet Node Name
- NominalCapacity, !- Performance Input Method
- autosize, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 16.6, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 32.2, !- Rated Outlet Air Temperature {C}
- 0.5; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_ER_ExtraWaterHeatC, !- Name
- ER_ExtraWaterHeatC_Sch, !- Availability Schedule Name
- , !- U-Factor Times Area Value {W/K}
- , !- Maximum Water Flow Rate {m3/s}
- VAV_ER_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_ER_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Air Inlet Node Name
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Air Outlet Node Name
- NominalCapacity, !- Performance Input Method
- autosize, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 16.6, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 32.2, !- Rated Outlet Air Temperature {C}
- 0.5; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_OR_ExtraWaterHeatC, !- Name
- OR_ExtraWaterHeatC_Sch, !- Availability Schedule Name
- , !- U-Factor Times Area Value {W/K}
- , !- Maximum Water Flow Rate {m3/s}
- VAV_OR_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_OR_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Air Inlet Node Name
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Air Outlet Node Name
- NominalCapacity, !- Performance Input Method
- autosize, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 16.6, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 32.2, !- Rated Outlet Air Temperature {C}
- 0.5; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_ICU_ExtraWaterHeatC, !- Name
- ICU_ExtraWaterHeatC_Sch, !- Availability Schedule Name
- , !- U-Factor Times Area Value {W/K}
- , !- Maximum Water Flow Rate {m3/s}
- VAV_ICU_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_ICU_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Air Inlet Node Name
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Air Outlet Node Name
- NominalCapacity, !- Performance Input Method
- autosize, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 16.6, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 32.2, !- Rated Outlet Air Temperature {C}
- 0.5; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_LABS_ExtraWaterHeatC,!- Name
- LABS_ExtraWaterHeatC_Sch,!- Availability Schedule Name
- , !- U-Factor Times Area Value {W/K}
- , !- Maximum Water Flow Rate {m3/s}
- VAV_LABS_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_LABS_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Air Inlet Node Name
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Air Outlet Node Name
- NominalCapacity, !- Performance Input Method
- autosize, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 16.6, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 32.2, !- Rated Outlet Air Temperature {C}
- 0.5; !- Rated Ratio for Air and Water Convection
-
-!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:ELECTRIC ===========
-
-
- Coil:Heating:Electric,
- VAV_PATRMS_ExtraElecHeatC, !- Name
- Patrms_ExtraElecHeatC_Sch, !- Availability Schedule Name
- 1.0000, !- Efficiency
- 10000000, !- Nominal Capacity {W}
- VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Air Inlet Node Name
- VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Air Outlet Node Name
- VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name
-
- Coil:Heating:Electric,
- VAV_ER_ExtraElecHeatC, !- Name
- ER_ExtraElecHeatC_Sch, !- Availability Schedule Name
- 1.0000, !- Efficiency
- 10000000, !- Nominal Capacity {W}
- VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Air Inlet Node Name
- VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Air Outlet Node Name
- VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name
-
- Coil:Heating:Electric,
- VAV_OR_ExtraElecHeatC, !- Name
- OR_ExtraElecHeatC_Sch, !- Availability Schedule Name
- 1.0000, !- Efficiency
- 10000000, !- Nominal Capacity {W}
- VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Air Inlet Node Name
- VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Air Outlet Node Name
- VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name
-
- Coil:Heating:Electric,
- VAV_ICU_ExtraElecHeatC, !- Name
- ICU_ExtraElecHeatC_Sch, !- Availability Schedule Name
- 1.0000, !- Efficiency
- 10000000, !- Nominal Capacity {W}
- VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Air Inlet Node Name
- VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Air Outlet Node Name
- VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name
-
- Coil:Heating:Electric,
- VAV_LABS_ExtraElecHeatC, !- Name
- LABS_ExtraElecHeatC_Sch, !- Availability Schedule Name
- 1.0000, !- Efficiency
- 10000000, !- Nominal Capacity {W}
- VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Air Inlet Node Name
- VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Air Outlet Node Name
- VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name
-
- Coil:Heating:Water,
- Basement VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Basement VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Basement VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Basement VAV Box Damper Node, !- Air Inlet Node Name
- Basement VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ER_Exam1_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ER_Trauma1_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ER_Trauma1_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- ER_Trauma1_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ER_Exam3_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ER_Trauma2_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ER_Trauma2_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- ER_Trauma2_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ER_Triage_Mult4_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ER_Triage_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- ER_Triage_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Office1_Mult4_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Office1_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- Office1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Lobby_Records_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Lobby_Records_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- Lobby_Records_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name
- ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- OR1_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- OR1_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- OR1_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- OR1_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- OR1_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- OR2_Mult5_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- OR2_Mult5_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- OR2_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- OR3_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- OR3_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- OR3_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- OR3_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- OR3_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- OR4_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- OR4_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- OR4_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- OR4_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- OR4_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- IC_PatRoom2_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- IC_PatRoom2_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- IC_PatRoom2_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ICU_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ICU_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ICU_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ICU_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- ICU_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name
- OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom1_Mult10_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom1_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom1_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom2_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom2_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom2_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom2_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom2_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom3_Mult10_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom3_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom3_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom4_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom4_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom4_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom4_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom4_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom5_Mult10_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom5_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom5_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PhysTherapy_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PhysTherapy_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PhysTherapy_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom6_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom6_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom6_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom6_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom6_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom7_Mult10_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom7_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom7_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom8_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom8_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom8_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom8_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom8_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- NurseStn_Lobby_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- NurseStn_Lobby_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- NurseStn_Lobby_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Lab_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Lab_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Lab_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Lab_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- Lab_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_SE_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_SE_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_SE_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_NW_Flr_3 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_NW_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_NW_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom1_Mult10_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom1_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom1_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom2_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom2_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom2_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom2_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom2_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom3_Mult10_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom3_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom3_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom4_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom4_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom4_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom4_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom4_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom5_Mult10_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom5_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom5_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Radiology_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Radiology_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Radiology_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Radiology_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- Radiology_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom6_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom6_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom6_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom6_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom6_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom7_Mult10_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom7_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom7_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- PatRoom8_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- PatRoom8_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- PatRoom8_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- PatRoom8_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- PatRoom8_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- NurseStn_Lobby_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- NurseStn_Lobby_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- NurseStn_Lobby_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Lab_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Lab_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Lab_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Lab_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- Lab_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_SE_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_SE_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_SE_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_NW_Flr_4 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_NW_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_NW_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Dining_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Dining_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Dining_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Dining_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- Dining_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- NurseStn_Lobby_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- NurseStn_Lobby_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- NurseStn_Lobby_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Office1_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Office1_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Office1_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Office1_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- Office1_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Office2_Mult5_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Office2_Mult5_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- Office2_Mult5_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Office3_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Office3_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Office3_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Office3_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- Office3_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Office4_Mult6_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Office4_Mult6_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- Office4_Mult6_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- Corridor_Flr_5 VAV Box Reheat Coil, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- Corridor_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name
- Corridor_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name
- Corridor_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name
- Corridor_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_1_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_1_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_1_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_1_CoolC-VAV_1_HeatCNode, !- Air Inlet Node Name
- VAV_1_HeatC-VAV_1_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40.0, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_ER_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_ER_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_ER_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_ER_CoolC-VAV_ER_HeatCNode, !- Air Inlet Node Name
- VAV_ER_HeatC-VAV_ER_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_OR_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_OR_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_OR_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_OR_CoolC-VAV_OR_HeatCNode, !- Air Inlet Node Name
- VAV_OR_HeatC-VAV_OR_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_ICU_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_ICU_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_ICU_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Air Inlet Node Name
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_PATRMS_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_PATRMS_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_PATRMS_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Air Inlet Node Name
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_2_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_2_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_2_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_2_CoolC-VAV_2_HeatCNode, !- Air Inlet Node Name
- VAV_2_HeatC-VAV_2_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- VAV_LABS_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- VAV_LABS_HeatCDemand Inlet Node, !- Water Inlet Node Name
- VAV_LABS_HeatCDemand Outlet Node, !- Water Outlet Node Name
- VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Air Inlet Node Name
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
- Coil:Heating:Water,
- CAV_KITCHEN_HeatC, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- AUTOSIZE, !- U-Factor Times Area Value {W/K}
- AUTOSIZE, !- Maximum Water Flow Rate {m3/s}
- CAV_KITCHEN_HeatCDemand Inlet Node, !- Water Inlet Node Name
- CAV_KITCHEN_HeatCDemand Outlet Node, !- Water Outlet Node Name
- CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Air Inlet Node Name
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Air Outlet Node Name
- UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method
- AUTOSIZE, !- Rated Capacity {W}
- 48.89, !- Rated Inlet Water Temperature {C}
- 12.8, !- Rated Inlet Air Temperature {C}
- 35, !- Rated Outlet Water Temperature {C}
- 40, !- Rated Outlet Air Temperature {C}
- ; !- Rated Ratio for Air and Water Convection
-
-!- =========== ALL OBJECTS IN CLASS: HUMIDIFIER:STEAM:ELECTRIC ===========
-
- Humidifier:Steam:Electric,
- VAV_ER Humidifier, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- 3.72E-5, !- Rated Capacity {m3/s}
- 100000, !- Rated Power {W}
- 0, !- Rated Fan Power {W}
- 0, !- Standby Power {W}
- VAV_ER_OA-VAV_ER HumidifierNode, !- Air Inlet Node Name
- VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode; !- Air Outlet Node Name
-
- Humidifier:Steam:Electric,
- VAV_OR Humidifier, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- 3.72E-5, !- Rated Capacity {m3/s}
- 100000, !- Rated Power {W}
- 0, !- Rated Fan Power {W}
- 0, !- Standby Power {W}
- VAV_OR_OA-VAV_OR HumidifierNode, !- Air Inlet Node Name
- VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode; !- Air Outlet Node Name
-
- Humidifier:Steam:Electric,
- VAV_ICU Humidifier, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- 3.72E-5, !- Rated Capacity {m3/s}
- 100000, !- Rated Power {W}
- 0, !- Rated Fan Power {W}
- 0, !- Standby Power {W}
- VAV_ICU_OA-VAV_ICU HumidifierNode, !- Air Inlet Node Name
- VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode; !- Air Outlet Node Name
-
- Humidifier:Steam:Electric,
- VAV_PATRMS Humidifier, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- 3.72E-5, !- Rated Capacity {m3/s}
- 100000, !- Rated Power {W}
- 0, !- Rated Fan Power {W}
- 0, !- Standby Power {W}
- VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Air Inlet Node Name
- VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode; !- Air Outlet Node Name
-
- Humidifier:Steam:Electric,
- VAV_LABS Humidifier, !- Name
- ALWAYS_ON, !- Availability Schedule Name
- 3.72E-5, !- Rated Capacity {m3/s}
- 100000, !- Rated Power {W}
- 0, !- Rated Fan Power {W}
- 0, !- Standby Power {W}
- VAV_LABS_OA-VAV_LABS HumidifierNode, !- Air Inlet Node Name
- VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode; !- Air Outlet Node Name
-
-!- =========== ALL OBJECTS IN CLASS: FAN:SIMPLE:VARIABLEVOLUME ===========
-
- Fan:VariableVolume,
- VAV_1_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.61425, !- Fan Total Efficiency
-1389.42, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- Fraction, !- Fan Power Minimum Flow Rate Input Method
- 0.25, !- Fan Power Minimum Flow Fraction
- , !- Fan Power Minimum Air Flow Rate {m3/s}
-0.945, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.0408, !- Fan Power Coefficient 1
-0.088, !- Fan Power Coefficient 2
--0.0729, !- Fan Power Coefficient 3
-0.9437, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_1_HeatC-VAV_1_FanNode, !- Air Inlet Node Name
- VAV_1 Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:VariableVolume,
- VAV_2_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.6175, !- Fan Total Efficiency
-1389.42, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- Fraction, !- Fan Power Minimum Flow Rate Input Method
- 0.25, !- Fan Power Minimum Flow Fraction
- , !- Fan Power Minimum Air Flow Rate {m3/s}
-0.95, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.0408, !- Fan Power Coefficient 1
-0.088, !- Fan Power Coefficient 2
--0.0729, !- Fan Power Coefficient 3
-0.9437, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_2_HeatC-VAV_2_FanNode, !- Air Inlet Node Name
- VAV_2 Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
-
-
-
- Fan:VariableVolume,
- VAV_ER_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.6045, !- Fan Total Efficiency
-1314.72, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- Fraction, !- Fan Power Minimum Flow Rate Input Method
- 0.25, !- Fan Power Minimum Flow Fraction
- , !- Fan Power Minimum Air Flow Rate {m3/s}
-0.93, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.0408, !- Fan Power Coefficient 1
-0.088, !- Fan Power Coefficient 2
--0.0729, !- Fan Power Coefficient 3
-0.9437, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_ER_HeatC-VAV_ER_FanNode, !- Air Inlet Node Name
- VAV_ER Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:VariableVolume,
- VAV_OR_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.61165, !- Fan Total Efficiency
-1389.42, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method
- , !- Fan Power Minimum Flow Fraction
- 0, !- Fan Power Minimum Air Flow Rate {m3/s}
-0.941, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.0408, !- Fan Power Coefficient 1
-0.088, !- Fan Power Coefficient 2
--0.0729, !- Fan Power Coefficient 3
-0.9437, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_OR_HeatC-VAV_OR_FanNode, !- Air Inlet Node Name
- VAV_OR Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:VariableVolume,
- VAV_ICU_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.6045, !- Fan Total Efficiency
-1389.42, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- Fraction, !- Fan Power Minimum Flow Rate Input Method
- 0.25, !- Fan Power Minimum Flow Fraction
- , !- Fan Power Minimum Air Flow Rate {m3/s}
-0.93, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.0408, !- Fan Power Coefficient 1
-0.088, !- Fan Power Coefficient 2
--0.0729, !- Fan Power Coefficient 3
-0.9437, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_ICU_HeatC-VAV_ICU_FanNode, !- Air Inlet Node Name
- VAV_ICU Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:VariableVolume,
- VAV_PATRMS_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.61425, !- Fan Total Efficiency
-1389.42, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method
- , !- Fan Power Minimum Flow Fraction
- 0, !- Fan Power Minimum Air Flow Rate {m3/s}
-0.945, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.0408, !- Fan Power Coefficient 1
-0.088, !- Fan Power Coefficient 2
--0.0729, !- Fan Power Coefficient 3
-0.9437, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Air Inlet Node Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:VariableVolume,
- VAV_LABS_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.59605, !- Fan Total Efficiency
-1389.42, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
- Fraction, !- Fan Power Minimum Flow Rate Input Method
- 0.25, !- Fan Power Minimum Flow Fraction
- , !- Fan Power Minimum Air Flow Rate {m3/s}
-0.917, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
-0.18984763, !- Fan Power Coefficient 1
-0.31447014, !- Fan Power Coefficient 2
-0.49568211, !- Fan Power Coefficient 3
-0, !- Fan Power Coefficient 4
-0, !- Fan Power Coefficient 5
- VAV_LABS_HeatC-VAV_LABS_FanNode, !- Air Inlet Node Name
- VAV_LABS Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: FAN:CONSTANTVOLUME ===========
-
- Fan:ConstantVolume,
- CAV_KITCHEN_Fan, !- Name
- HVACOperationSchd, !- Availability Schedule Name
-0.61425, !- Fan Total Efficiency
-1018.41, !- Pressure Rise {Pa}
- AUTOSIZE, !- Maximum Flow Rate {m3/s}
-0.945, !- Motor Efficiency
- 1.0, !- Motor In Airstream Fraction
- CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Air Inlet Node Name
- CAV_KITCHEN Supply Equipment Outlet Node, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
-!- =========== ALL OBJECTS IN CLASS: ZONE EXHAUST FAN ===========
-
- Fan:ZoneExhaust,
- Kitchen_Flr_5 Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 0.16, !- Fan Total Efficiency
- 124.5, !- Pressure Rise {Pa}
- 3.39802159631503, !- Maximum Flow Rate {m3/s}
- Kitchen_Flr_5 Exhaust Fan Node, !- Air Inlet Node Name
- Kitchen_Flr_5 Exhaust Fan Outlet Node, !- Air Outlet Node Name
- General, !- End-Use Subcategory
- , !- Flow Fraction Schedule Name
- , !- System Availability Manager Coupling Mode
- , !- Minimum Zone Temperature Limit Schedule Name
- Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule; !- Balanced Exhaust Fraction Schedule Name Balanced Exhaust Fraction Schedule Name
-
-
-
- Schedule:Compact,
- Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 07:00,0, !- Field 3
- Until: 24:00,0.445694444444444; !- Field 5
-
- Fan:ZoneExhaust,
- Dining_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.902363512799215, !- Maximum Flow Rate {m3/s}
- Dining_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- Dining_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:ZoneExhaust,
- NurseStn_Lobby_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.352072793173752, !- Maximum Flow Rate {m3/s}
- NurseStn_Lobby_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- NurseStn_Lobby_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:ZoneExhaust,
- Office1_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.0335082685192177, !- Maximum Flow Rate {m3/s}
- Office1_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- Office1_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:ZoneExhaust,
- Office2_Mult5_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.0335082685192177, !- Maximum Flow Rate {m3/s}
- Office2_Mult5_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- Office2_Mult5_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:ZoneExhaust,
- Office3_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.0335082685192177, !- Maximum Flow Rate {m3/s}
- Office3_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- Office3_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:ZoneExhaust,
- Office4_Mult6_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.00660726421505701, !- Maximum Flow Rate {m3/s}
- Office4_Mult6_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- Office4_Mult6_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-
- Fan:ZoneExhaust,
- Corridor_Flr_5 Dummy Exhaust Fan, !- Name
- Kitchen_Exhaust_SCH, !- Availability Schedule Name
- 1.0000, !- Fan Total Efficiency
- 0, !- Pressure Rise {Pa}
- 0.152910971834177, !- Maximum Flow Rate {m3/s}
- Corridor_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name
- Corridor_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name
- General; !- End-Use Subcategory
-!- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT ===========
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- ICU OA Heat Recovery, !- Name
- Always_On, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.70, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.70, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.75, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.75, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- VAV_ICU_OAInlet Node, !- Supply Air Inlet Node Name
- ICU Heat Recovery Outlet Node, !- Supply Air Outlet Node Name
- VAV_ICU_OARelief Node, !- Exhaust Air Inlet Node Name
- ICU Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 1539.37265225, !- Nominal Electric Power {W}
- Yes, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-!- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT ===========
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- PATRMS OA Heat Recovery, !- Name
- Always_On, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.70, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.70, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.75, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.75, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- VAV_PATRMS_OAInlet Node, !- Supply Air Inlet Node Name
- PATRMS Heat Recovery Outlet Node, !- Supply Air Outlet Node Name
- VAV_PATRMS_OARelief Node,!- Exhaust Air Inlet Node Name
- PATRMS Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 3273.229555, !- Nominal Electric Power {W}
- Yes, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
- HeatExchanger:AirToAir:SensibleAndLatent,
- VAV_1 OA Heat Recovery, !- Name
- Always_On, !- Availability Schedule Name
- AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s}
- 0.70, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}
- 0.70, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}
- 0.75, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}
- 0.75, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}
- 0.60, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}
- VAV_1_OAInlet Node, !- Supply Air Inlet Node Name
- VAV_1 Heat Recovery Outlet Node, !- Supply Air Outlet Node Name
- VAV_1_OARelief Node, !- Exhaust Air Inlet Node Name
- VAV_1 Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name
- 3154.26375, !- Nominal Electric Power {W}
- Yes, !- Supply Air Outlet Temperature Control
- Rotary, !- Heat Exchanger Type
- ExhaustOnly, !- Frost Control Type
- -23.3, !- Threshold Temperature {C}
- 0.167, !- Initial Defrost Time Fraction {dimensionless}
- 1.44; !- Rate of Defrost Time Fraction Increase {1/K}
-
-
-
-
-
-
- Curve:Cubic,
- Tower_Fan_Curve, !- Name
- 0, !- Coefficient1 Constant
- 0, !- Coefficient2 x
- 0, !- Coefficient3 x**2
- 1, !- Coefficient4 x**3
- 0.0, !- Minimum Value of x
- 1.0; !- Maximum Value of x
-
-!- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:FLUIDTOFLUID ===========
-
- HeatExchanger:FluidToFluid,
- Heat Recovery Chiller Bypass Heat Exchanger, !- Name
- Bypass Heat Exchanger Status, !- Availability Schedule Name
- Heat Recovery Chiller Bypass Heat Exchanger Demand Side Inlet, !- Loop Demand Side Inlet Node Name
- Heat Recovery Chiller Bypass Heat Exchanger Demand Side Outlet, !- Loop Demand Side Outlet Node Name
- autosize, !- Loop Demand Side Design Flow Rate {m3/s}
- CoolSys1 Demand Supply Side Inlet Pipe Outlet Node, !- Loop Supply Side Inlet Node Name
- Heat Recovery Chiller Bypass Heat Exchanger Outlet, !- Loop Supply Side Outlet Node Name
- autosize, !- Loop Supply Side Design Flow Rate {m3/s}
- Ideal, !- Heat Exchange Model Type
- autosize, !- Heat Exchanger U-Factor Times Area Value {W/K}
- UncontrolledOn, !- Control Type
- , !- Heat Exchanger Setpoint Node Name
- , !- Minimum Temperature Difference to Activate Heat Exchanger {deltaC}
- LoopToLoop, !- Heat Transfer Metering End Use Type
- , !- Component Override Loop Supply Side Inlet Node Name
- , !- Component Override Loop Demand Side Inlet Node Name
- Loop, !- Component Override Cooling Control Temperature Mode
- 1; !- Sizing Factor
-
-
-HeatExchanger:FluidToFluid,
- Bypass Heat Exchanger , !- Name
- ALWAYS_ON, !- Availability Schedule Name
- CoolSys1 Exchanger Supply Inlet Node, !- Loop Demand Side Inlet Node Name
- CoolSys1 Exchanger Supply Outlet Node, !- Loop Demand Side Outlet Node Name
- autosize, !- Loop Demand Side Design Flow Rate {m3/s}
- CoolSys1 Exchanger Demand Inlet Node, !- Loop Supply Side Inlet Node Name
- CoolSys1 Exchanger Demand Outlet Node, !- Loop Supply Side Outlet Node Name
- autosize, !- Loop Supply Side Design Flow Rate {m3/s}
- Ideal, !- Heat Exchange Model Type
- autosize, !- Heat Exchanger U-Factor Times Area Value {W/K}
- UncontrolledOn, !- Control Type
- , !- Heat Exchanger Setpoint Node Name
- 0.01, !- Minimum Temperature Difference to Activate Heat Exchanger {deltaC}
- LoopToLoop, !- Heat Transfer Metering End Use Type
- , !- Component Override Loop Supply Side Inlet Node Name
- , !- Component Override Loop Demand Side Inlet Node Name
- Loop, !- Component Override Cooling Control Temperature Mode
- 1; !- Sizing Factor
-
-!- =========== ALL OBJECTS IN CLASS: WATER USE EQUIPMENT ===========
-
-
- WaterUse:Equipment,
- ER_Exam1_Mult4_Flr_1 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- ER_Exam1_Mult4_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name
- ER_Exam1_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- ER_Exam1_Mult4_Flr_1, !- Zone Name
- ER_Exam1_Mult4_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- ER_Exam1_Mult4_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- ER_Trauma1_Flr_1 sub cat,!- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- ER_Trauma1_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name
- ER_Trauma1_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- ER_Trauma1_Flr_1, !- Zone Name
- ER_Trauma1_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- ER_Trauma1_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- ER_Exam3_Mult4_Flr_1 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- ER_Exam3_Mult4_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name
- ER_Exam3_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- ER_Exam3_Mult4_Flr_1, !- Zone Name
- ER_Exam3_Mult4_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- ER_Exam3_Mult4_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- ER_Trauma2_Flr_1 sub cat,!- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- ER_Trauma2_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name
- ER_Trauma2_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- ER_Trauma2_Flr_1, !- Zone Name
- ER_Trauma2_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- ER_Trauma2_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- ER_Triage_Mult4_Flr_1 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- ER_Triage_Mult4_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name
- ER_Triage_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- ER_Triage_Mult4_Flr_1, !- Zone Name
- ER_Triage_Mult4_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- ER_Triage_Mult4_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- OR1_Flr_2 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 2.11111111111111E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- OR1_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name
- OR1_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- OR1_Flr_2, !- Zone Name
- OR1_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- OR1_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- OR2_Mult5_Flr_2 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 2.11111111111111E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- OR2_Mult5_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name
- OR2_Mult5_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- OR2_Mult5_Flr_2, !- Zone Name
- OR2_Mult5_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- OR2_Mult5_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- OR3_Flr_2 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 2.11111111111111E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- OR3_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name
- OR3_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- OR3_Flr_2, !- Zone Name
- OR3_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- OR3_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- OR4_Flr_2 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 6.30555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- OR4_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name
- OR4_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- OR4_Flr_2, !- Zone Name
- OR4_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- OR4_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom1_Mult10_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom1_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom1_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom1_Mult10_Flr_3, !- Zone Name
- PatRoom1_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom1_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom2_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom2_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom2_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom2_Flr_3, !- Zone Name
- PatRoom2_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom2_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom3_Mult10_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom3_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom3_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom3_Mult10_Flr_3, !- Zone Name
- PatRoom3_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom3_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom4_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom4_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom4_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom4_Flr_3, !- Zone Name
- PatRoom4_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom4_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom5_Mult10_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom5_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom5_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom5_Mult10_Flr_3, !- Zone Name
- PatRoom5_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom5_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PhysTherapy_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- PhysTherapy_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PhysTherapy_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PhysTherapy_Flr_3, !- Zone Name
- PhysTherapy_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PhysTherapy_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom6_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom6_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom6_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom6_Flr_3, !- Zone Name
- PatRoom6_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom6_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom7_Mult10_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom7_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom7_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom7_Mult10_Flr_3, !- Zone Name
- PatRoom7_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom7_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom8_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom8_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom8_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom8_Flr_3, !- Zone Name
- PatRoom8_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom8_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- Lab_Flr_3 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 2.11111111111111E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- Lab_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name
- Lab_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- Lab_Flr_3, !- Zone Name
- Lab_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- Lab_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom1_Mult10_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom1_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom1_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom1_Mult10_Flr_4, !- Zone Name
- PatRoom1_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom1_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom2_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom2_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom2_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom2_Flr_4, !- Zone Name
- PatRoom2_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom2_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom3_Mult10_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom3_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom3_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom3_Mult10_Flr_4, !- Zone Name
- PatRoom3_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom3_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom4_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom4_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom4_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom4_Flr_4, !- Zone Name
- PatRoom4_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom4_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom5_Mult10_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom5_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom5_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom5_Mult10_Flr_4, !- Zone Name
- PatRoom5_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom5_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- Radiology_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- Radiology_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- Radiology_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- Radiology_Flr_4, !- Zone Name
- Radiology_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- Radiology_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom6_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom6_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom6_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom6_Flr_4, !- Zone Name
- PatRoom6_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom6_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom7_Mult10_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom7_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom7_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom7_Mult10_Flr_4, !- Zone Name
- PatRoom7_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom7_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- PatRoom8_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 1.05555555555556E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- PatRoom8_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- PatRoom8_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- PatRoom8_Flr_4, !- Zone Name
- PatRoom8_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- PatRoom8_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- Lab_Flr_4 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 2.11111111111111E-6, !- Peak Flow Rate {m3/s}
- BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name
- Lab_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name
- Lab_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- Lab_Flr_4, !- Zone Name
- Lab_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- Lab_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-
-
- WaterUse:Equipment,
- Kitchen_Flr_5 sub cat, !- Name
- WaterUse, !- End-Use Subcategory
- 6.059182e-5, !- Peak Flow Rate {m3/s}
- BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name
- Kitchen_Flr_5 sub cat Temp Sched, !- Target Temperature Schedule Name
- Kitchen_Flr_5 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- Kitchen_Flr_5, !- Zone Name
- Kitchen_Flr_5 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name
- Kitchen_Flr_5 sub cat Latent fract sched; !- Latent Fraction Schedule Name
-
-!- =========== ALL OBJECTS IN CLASS: WATER USE CONNECTIONS ===========
-
- WaterUse:Connections,
- ER_Exam1_Mult4_Flr_1 sub cat, !- Name
- ER_Exam1_Mult4_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name
- ER_Exam1_Mult4_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- ER_Exam1_Mult4_Flr_1 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- ER_Trauma1_Flr_1 sub cat,!- Name
- ER_Trauma1_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name
- ER_Trauma1_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- ER_Trauma1_Flr_1 sub cat;!- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- ER_Exam3_Mult4_Flr_1 sub cat, !- Name
- ER_Exam3_Mult4_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name
- ER_Exam3_Mult4_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- ER_Exam3_Mult4_Flr_1 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- ER_Trauma2_Flr_1 sub cat,!- Name
- ER_Trauma2_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name
- ER_Trauma2_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- ER_Trauma2_Flr_1 sub cat;!- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- ER_Triage_Mult4_Flr_1 sub cat, !- Name
- ER_Triage_Mult4_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name
- ER_Triage_Mult4_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- ER_Triage_Mult4_Flr_1 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- OR1_Flr_2 sub cat, !- Name
- OR1_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name
- OR1_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- OR1_Flr_2 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- OR2_Mult5_Flr_2 sub cat, !- Name
- OR2_Mult5_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name
- OR2_Mult5_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- OR2_Mult5_Flr_2 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- OR3_Flr_2 sub cat, !- Name
- OR3_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name
- OR3_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- OR3_Flr_2 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- OR4_Flr_2 sub cat, !- Name
- OR4_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name
- OR4_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- OR4_Flr_2 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom1_Mult10_Flr_3 sub cat, !- Name
- PatRoom1_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom1_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom1_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom2_Flr_3 sub cat, !- Name
- PatRoom2_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom2_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom2_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom3_Mult10_Flr_3 sub cat, !- Name
- PatRoom3_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom3_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom3_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom4_Flr_3 sub cat, !- Name
- PatRoom4_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom4_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom4_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom5_Mult10_Flr_3 sub cat, !- Name
- PatRoom5_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom5_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom5_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PhysTherapy_Flr_3 sub cat, !- Name
- PhysTherapy_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PhysTherapy_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PhysTherapy_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom6_Flr_3 sub cat, !- Name
- PatRoom6_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom6_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom6_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom7_Mult10_Flr_3 sub cat, !- Name
- PatRoom7_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom7_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom7_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom8_Flr_3 sub cat, !- Name
- PatRoom8_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom8_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom8_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- Lab_Flr_3 sub cat, !- Name
- Lab_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name
- Lab_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- Lab_Flr_3 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom1_Mult10_Flr_4 sub cat, !- Name
- PatRoom1_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom1_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom1_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom2_Flr_4 sub cat, !- Name
- PatRoom2_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom2_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom2_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom3_Mult10_Flr_4 sub cat, !- Name
- PatRoom3_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom3_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom3_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom4_Flr_4 sub cat, !- Name
- PatRoom4_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom4_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom4_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom5_Mult10_Flr_4 sub cat, !- Name
- PatRoom5_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom5_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom5_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- Radiology_Flr_4 sub cat, !- Name
- Radiology_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- Radiology_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- Radiology_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom6_Flr_4 sub cat, !- Name
- PatRoom6_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom6_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom6_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom7_Mult10_Flr_4 sub cat, !- Name
- PatRoom7_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom7_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom7_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- PatRoom8_Flr_4 sub cat, !- Name
- PatRoom8_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- PatRoom8_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- PatRoom8_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- Lab_Flr_4 sub cat, !- Name
- Lab_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name
- Lab_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- Lab_Flr_4 sub cat; !- Water Use Equipment 1 Name
-
- WaterUse:Connections,
- Kitchen_Flr_5 sub cat, !- Name
- Kitchen_Flr_5 sub cat Water Inlet Node, !- Inlet Node Name
- Kitchen_Flr_5 sub cat Water Outlet Node, !- Outlet Node Name
- , !- Supply Water Storage Tank Name
- , !- Reclamation Water Storage Tank Name
- , !- Hot Water Supply Temperature Schedule Name
- , !- Cold Water Supply Temperature Schedule Name
- , !- Drain Water Heat Exchanger Type
- , !- Drain Water Heat Exchanger Destination
- , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
- Kitchen_Flr_5 sub cat; !- Water Use Equipment 1 Name
-
-!No PV for this case
-!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:SENSOR ===========
-
- EnergyManagementSystem:Sensor,
- T_OA, !- Name
- , !- Output:Variable or Output:Meter Index Key Name
- Site Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- Patrms_FanMassFlow, !- Name
- VAV_PATRMS Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name
- System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- Patrms_Humidifier_Status,!- Name
- VAV_PATRMS Humidifier, !- Output:Variable or Output:Meter Index Key Name
- Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- Patrms_HeatC_Status, !- Name
- VAV_PATRMS_HeatC, !- Output:Variable or Output:Meter Index Key Name
- Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- Patrms_AfterHumidifier_Temp, !- Name
- VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- Patrms_AfterElecHeatC_Temp, !- Name
- VAV_PATRMS EXTRAELECHEATC-VAV_PATRMS_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ER_FanMassFlow, !- Name
- VAV_ER Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name
- System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ER_Humidifier_Status, !- Name
- VAV_ER Humidifier, !- Output:Variable or Output:Meter Index Key Name
- Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ER_HeatC_Status, !- Name
- VAV_ER_HeatC, !- Output:Variable or Output:Meter Index Key Name
- Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ER_AfterHumidifier_Temp, !- Name
- VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ER_AfterElecHeatC_Temp, !- Name
- VAV_ER EXTRAELECHEATC-VAV_ER_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- OR_FanMassFlow, !- Name
- VAV_OR Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name
- System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- OR_Humidifier_Status, !- Name
- VAV_OR Humidifier, !- Output:Variable or Output:Meter Index Key Name
- Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- OR_HeatC_Status, !- Name
- VAV_OR_HeatC, !- Output:Variable or Output:Meter Index Key Name
- Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- OR_AfterHumidifier_Temp, !- Name
- VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- OR_AfterElecHeatC_Temp, !- Name
- VAV_OR EXTRAELECHEATC-VAV_OR_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ICU_FanMassFlow, !- Name
- VAV_ICU Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name
- System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ICU_Humidifier_Status, !- Name
- VAV_ICU Humidifier, !- Output:Variable or Output:Meter Index Key Name
- Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ICU_HeatC_Status, !- Name
- VAV_ICU_HeatC, !- Output:Variable or Output:Meter Index Key Name
- Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ICU_AfterHumidifier_Temp,!- Name
- VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- ICU_AfterElecHeatC_Temp, !- Name
- VAV_ICU EXTRAELECHEATC-VAV_ICU_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- LABS_FanMassFlow, !- Name
- VAV_LABS Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name
- System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- LABS_Humidifier_Status, !- Name
- VAV_LABS Humidifier, !- Output:Variable or Output:Meter Index Key Name
- Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- LABS_HeatC_Status, !- Name
- VAV_LABS_HeatC, !- Output:Variable or Output:Meter Index Key Name
- Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- LABS_AfterHumidifier_Temp, !- Name
- VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- LABS_AfterElecHeatC_Temp,!- Name
- VAV_LABS EXTRAELECHEATC-VAV_LABS_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name
- System Node Temperature; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- HotWaterDemand, !- Name
- HeatSys1, !- Output:Variable or Output:Meter Index Key Name
- Plant Supply Side Heating Demand Rate; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- CHWR,
- Heat Recovery Chiller Inlet,
- System Node Temperature;
-
-
-
-!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:ACTUATOR ===========
-
- EnergyManagementSystem:Actuator,
- Patrms_ExtraElecHeatC_SP,!- Name
- VAV_PATRMS EXTRAELECHEATC-VAV_PATRMS_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- Patrms_ExtraWaterHeatC_SP, !- Name
- VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- Patrms_ExtraElecHeatC_Status, !- Name
- Patrms_ExtraElecHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- Patrms_ExtraWaterHeatC_Status, !- Name
- Patrms_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ER_ExtraElecHeatC_SP, !- Name
- VAV_ER EXTRAELECHEATC-VAV_ER_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ER_ExtraWaterHeatC_SP, !- Name
- VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ER_ExtraElecHeatC_Status,!- Name
- ER_ExtraElecHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ER_ExtraWaterHeatC_Status, !- Name
- ER_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- OR_ExtraElecHeatC_SP, !- Name
- VAV_OR EXTRAELECHEATC-VAV_OR_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- OR_ExtraWaterHeatC_SP, !- Name
- VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- OR_ExtraElecHeatC_Status,!- Name
- OR_ExtraElecHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- OR_ExtraWaterHeatC_Status, !- Name
- OR_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ICU_ExtraElecHeatC_SP, !- Name
- VAV_ICU EXTRAELECHEATC-VAV_ICU_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ICU_ExtraWaterHeatC_SP, !- Name
- VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ICU_ExtraElecHeatC_Status, !- Name
- ICU_ExtraElecHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- ICU_ExtraWaterHeatC_Status, !- Name
- ICU_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- LABS_ExtraElecHeatC_SP, !- Name
- VAV_LABS EXTRAELECHEATC-VAV_LABS_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- LABS_ExtraWaterHeatC_SP, !- Name
- VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Actuated Component Unique Name
- System Node Setpoint, !- Actuated Component Type
- Temperature Setpoint; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- LABS_ExtraElecHeatC_Status, !- Name
- LABS_ExtraElecHeatC_Sch, !- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- LABS_ExtraWaterHeatC_Status, !- Name
- LABS_ExtraWaterHeatC_Sch,!- Actuated Component Unique Name
- Schedule:Compact, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- BypassHXStatus, !- Name
- Bypass Heat Exchanger Status, !- Actuated Component Unique Name
- Schedule:Constant, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- HRC_SPM_Reset, !- Name
- Heat Recovery Chiller Bypass Loop Setpoint Schedule, !- Actuated Component Unique Name
- Schedule:Constant, !- Actuated Component Type
- Schedule Value; !- Actuated Component Control Type
-
-
-
-!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:PROGRAMCALLINGMANAGER ===========
-
- EnergyManagementSystem:ProgramCallingManager,
- Patrms_Main_Manager, !- Name
- InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point
- Patrms_Main; !- Program Name 1
-
- EnergyManagementSystem:ProgramCallingManager,
- ER_Main_Manager, !- Name
- InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point
- ER_Main; !- Program Name 1
-
- EnergyManagementSystem:ProgramCallingManager,
- OR_Main_Manager, !- Name
- InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point
- OR_Main; !- Program Name 1
-
- EnergyManagementSystem:ProgramCallingManager,
- ICU_Main_Manager, !- Name
- InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point
- ICU_Main; !- Program Name 1
-
- EnergyManagementSystem:ProgramCallingManager,
- LABS_Main_Manager, !- Name
- InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point
- LABS_Main; !- Program Name 1
-
- EnergyManagementSystem:ProgramCallingManager,
- BypassHXStatus_Manager, !- Name
- AfterPredictorBeforeHVACManagers, !- EnergyPlus Model Calling Point
- BypassHXStatus_Prg; !- Program Name 1
-
-
-
-!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:PROGRAM ===========
-
- EnergyManagementSystem:Program,
- Patrms_Main, !- Name
- IF Patrms_Humidifier_Status > 0, !- Program Line 1
- SET Patrms_ExtraElecHeatC_Status = 1, !- Program Line 2
- SET Patrms_ExtraElecHeatC_SP = Patrms_AfterHumidifier_Temp + 0.36, !-
- ELSE, !-
- SET Patrms_ExtraElecHeatC_Status = 0, !-
- SET Patrms_ExtraElecHeatC_SP = NULL, !-
- ENDIF, !-
- IF T_OA < 10 && Patrms_HeatC_Status >0, !-
- SET HeatGain = 3 * (Patrms_FanDesignMass/1.2) *2118, !-
- SET FlowRate = (Patrms_FanMassFlow/1.2)*2118, !-
- SET Patrms_PreheatDeltaT = HeatGain/(1.08*FlowRate), !-
- SET Patrms_ExtraWaterHeatC_Status = 1, !-
- SET Patrms_ExtraWaterHeatC_SP = Patrms_AfterElecHeatC_Temp + Patrms_PreheatDeltaT, !-
- ELSE, !-
- SET Patrms_ExtraWaterHeatC_Status = 0, !-
- SET Patrms_ExtraWaterHeatC_SP = NULL, !-
- ENDIF; !-
-
-
- EnergyManagementSystem:Program,
- ER_Main, !- Name
- IF ER_Humidifier_Status > 0, !- Program Line 1
- SET ER_ExtraElecHeatC_Status = 1, !- Program Line 2
- SET ER_ExtraElecHeatC_SP = ER_AfterHumidifier_Temp + 0.36, !-
- ELSE, !-
- SET ER_ExtraElecHeatC_Status = 0, !-
- SET ER_ExtraElecHeatC_SP = NULL, !-